-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
66 lines (66 loc) · 2.05 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
{
"name": "ezsystems/ezplatform-http-cache",
"description": "HTTP cache handling for eZ Platform.",
"type": "ezplatform-bundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "eZ Systems",
"email": "dev-team@ez.no"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ezsystems/ezplatform-kernel": "^1.3@dev",
"ezsystems/ezplatform-rest": "^1.0@dev",
"friendsofsymfony/http-cache-bundle": "^2.8",
"friendsofsymfony/http-cache": "^2.9",
"symfony/http-foundation": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/routing": "^5.0",
"symfony/yaml": "^5.0",
"symfony/config": "^5.0",
"psr/http-client": "^1.0",
"php-http/curl-client": "^2.1",
"toflar/psr6-symfony-http-cache-store": "^2.2 || ^3.0"
},
"require-dev": {
"ibexa/ci-scripts": "^0.1@dev",
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"phpunit/phpunit": "^8.5",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"phpspec/phpspec": "^7.1",
"ezsystems/ezplatform-code-style": "^0.1.0",
"friendsofphp/php-cs-fixer": "^2.16.0",
"symfony/phpunit-bridge": "^5.1"
},
"autoload": {
"psr-4": {
"EzSystems\\PlatformHttpCacheBundle\\": "src",
"EzSystems\\PlatformHttpCacheBundle\\Tests\\": "tests",
"Ibexa\\HttpCache\\": "src"
}
},
"autoload-dev": {
"autoload-dev": {
"Ibexa\\Tests\\Bundle\\HttpCache\\": "tests/bundle/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"unit": "phpunit -c phpunit.xml",
"spec": "phpspec run --format=pretty",
"check-cs": "@fix-cs --dry-run",
"test": [
"@unit",
"@spec"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
}
}