-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.35 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "ibexa/http-cache",
"description": "HTTP cache handling for Ibexa DXP.",
"type": "ibexa-bundle",
"license": "(GPL-2.0-only or proprietary)",
"replace": {
"ezsystems/ezplatform-http-cache": "*"
},
"authors": [
{
"name": "Ibexa",
"email": "dev-team@ibexa.co"
}
],
"require": {
"php": " >=8.3",
"friendsofsymfony/http-cache": "^3.1",
"friendsofsymfony/http-cache-bundle": "^3.1.2",
"ibexa/core": "~6.0.x-dev",
"ibexa/rest": "~6.0.x-dev",
"php-http/curl-client": "^2.1",
"psr/http-client": "^1.0",
"symfony/config": "^7.4",
"symfony/dependency-injection": "^7.4",
"symfony/event-dispatcher": "^7.4",
"symfony/http-foundation": "^7.4",
"symfony/http-kernel": "^7.4",
"symfony/routing": "^7.4",
"symfony/yaml": "^7.4",
"toflar/psr6-symfony-http-cache-store": "^4.2"
},
"require-dev": {
"guzzlehttp/psr7": "^2.7",
"ibexa/code-style": "~2.0.0",
"ibexa/doctrine-schema": "~6.0.x-dev",
"ibexa/rector": "~6.0.x-dev",
"matthiasnoback/symfony-dependency-injection-test": "^5.0",
"phpspec/phpspec": "^7.1 || ^8.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^7.4"
},
"autoload": {
"psr-4": {
"Ibexa\\HttpCache\\": "src/lib/",
"Ibexa\\Bundle\\HttpCache\\": "src/bundle/",
"Ibexa\\Contracts\\HttpCache\\": "src/contracts/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\HttpCache\\": "tests/lib/",
"Ibexa\\Tests\\Bundle\\HttpCache\\": "tests/bundle/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"unit": "phpunit -c phpunit.xml",
"spec": "phpspec run --format=pretty",
"check-cs": "@fix-cs --dry-run",
"phpstan": "phpstan analyse",
"test": [
"@unit",
"@spec"
]
},
"extra": {
"branch-alias": {
"dev-main": "6.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": false
}
}