-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.35 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
{
"name": "paveldanilin/response-cache-bundle",
"type": "symfony-bundle",
"description": "A Symfony ResponseCache Bundle",
"keywords": [
"response-cache",
"symfony",
"bundle",
"annotation",
"cacheable"
],
"license": "MIT",
"authors": [
{
"name": "Pavel",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"doctrine/annotations": "1.11.*|1.12.*|1.13.*",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/console": "^4.4|^5.0",
"symfony/expression-language": "^4.4|^5.0",
"symfony/lock": "^4.4|^5.0",
"paveldanilin/reflection-scanner": "^0.0"
}
,
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12"
},
"autoload": {
"psr-4": {
"Pada\\ResponseCacheBundle\\": ""
},
"exclude-from-classmap": ["/Tests/"]
},
"autoload-dev": {
"psr-4": {
"Pada\\ResponseCacheBundle\\Tests\\": "Tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": [
"php -d memory_limit=4G ./vendor/bin/phpstan analyse -c phpstan.neon",
"php ./vendor/bin/phpunit"
]
}
}