-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
80 lines (80 loc) · 2.46 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
74
75
76
77
78
79
80
{
"name": "sofascore/purgatory-bundle",
"description": "A Symfony bundle for HTTP cache invalidation with support for various backends like Varnish.",
"type": "symfony-bundle",
"keywords": [
"cache",
"caching",
"http",
"http-cache",
"http-caching",
"invalidation",
"purge",
"varnish"
],
"license": "MIT",
"authors": [
{
"name": "Sofascore",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Sofascore\\PurgatoryBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sofascore\\PurgatoryBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"doctrine/dbal": "^3.8 || ^4.0",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/orm": "^2.19 || ^3.1",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/finder": "^5.4 || ^6.4 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/polyfill-php84": "^1.30",
"symfony/property-access": "^5.4 || ^6.4 || ^7.0",
"symfony/property-info": "^5.4 || ^6.4 || ^7.0",
"symfony/routing": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"doctrine/common": "^3.2",
"phpunit/phpunit": "^11.5",
"symfony/cache": "^5.4 || ^6.4 || ^7.0",
"symfony/doctrine-messenger": "^5.4 || ^6.4 || ^7.0",
"symfony/expression-language": "^5.4 || ^6.4 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
"symfony/http-client": "^5.4 || ^6.4 || ^7.0",
"symfony/messenger": "^5.4 || ^6.4 || ^7.0",
"symfony/process": "^5.4 || ^6.4 || ^7.0",
"symfony/serializer": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0"
},
"conflict": {
"symfony/cache": "<5.4",
"symfony/expression-language": "<5.4",
"symfony/http-client": "<5.4",
"symfony/messenger": "<5.4",
"symfony/serializer": "<5.4",
"symfony/yaml": "<5.4"
},
"scripts": {
"run-checks": [
"php-cs-fixer fix -vvv",
"phpunit",
"psalm --no-cache",
"phpstan"
]
},
"config": {
"sort-packages": true
}
}