-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
73 lines (73 loc) · 2.14 KB
/
composer.json
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
{
"name": "ibexa/http-cache",
"description": "HTTP cache handling for Ibexa DXP.",
"type": "ibexa-bundle",
"license": "GPL-2.0-only",
"replace": {
"ezsystems/ezplatform-http-cache": "*"
},
"authors": [
{
"name": "eZ Systems",
"email": "[email protected]"
}
],
"require": {
"php": " >=8.3",
"friendsofsymfony/http-cache": "^2.9",
"friendsofsymfony/http-cache-bundle": "^2.8",
"ibexa/core": "~5.0.x-dev",
"ibexa/rest": "~5.0.x-dev",
"php-http/curl-client": "^2.1",
"psr/http-client": "^1.0",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/routing": "^5.0",
"symfony/yaml": "^5.0",
"toflar/psr6-symfony-http-cache-store": "^2.2 || ^3.0"
},
"require-dev": {
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/code-style": "~2.0.0",
"ibexa/doctrine-schema": "~5.0.x-dev",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"phpspec/phpspec": "^7.1",
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^5.1"
},
"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",
"test": [
"@unit",
"@spec"
]
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": false
}
}