-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.22 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
{
"name": "bedrockstreaming/stale-cache-bundle",
"description": "Add a stale mode into Symfony cache",
"type": "symfony-bundle",
"license": "proprietary",
"autoload": {
"psr-4": {
"Bedrock\\StaleCacheBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bedrock\\StaleCacheBundle\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin/",
"allow-plugins": {
"symfony/flex": true
}
},
"authors": [
{
"name": "Valentin Clavreul",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1 || ^2 || ^3",
"symfony/dependency-injection": "^5.4 || ^6.0" ,
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/cache-contracts": "^2.0 || ^3.0",
"symfony/cache": "^5.4 || ^6.0",
"symfony/config": "^5.4 || ^6.0"
},
"require-dev": {
"symfony/var-dumper": "^5.4 || ^6.0",
"phpunit/phpunit": "^9.5",
"phpspec/prophecy-phpunit": "^2.0",
"m6web/php-cs-fixer-config": "^2.0",
"phpstan/phpstan": "^1.6",
"rector/rector": "^0.13.8",
"symfony/polyfill-php80": "^1.16.0",
"friendsofphp/php-cs-fixer": "^3.4.0",
"symfony/flex": "^2.2"
}
}