-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 2.5 KB
/
composer.json
File metadata and controls
82 lines (82 loc) · 2.5 KB
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
81
82
{
"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": "backend-team@sofascore.com"
}
],
"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 || ^3.0",
"doctrine/orm": "^2.19 || ^3.1",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/console": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/finder": "^6.4 || ^7.4 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/polyfill-php84": "^1.30",
"symfony/property-access": "^6.4 || ^7.4 || ^8.0",
"symfony/property-info": "^6.4 || ^7.4 || ^8.0",
"symfony/routing": "^6.4 || ^7.4 || ^8.0"
},
"require-dev": {
"doctrine/common": "^3.2",
"phpunit/phpunit": "^12.5",
"symfony/cache": "^6.4 || ^7.4 || ^8.0",
"symfony/doctrine-messenger": "^6.4 || ^7.4 || ^8.0",
"symfony/expression-language": "^6.4 || ^7.4 || ^8.0",
"symfony/filesystem": "^6.4 || ^7.4 || ^8.0",
"symfony/http-client": "^6.4 || ^7.4 || ^8.0",
"symfony/messenger": "^6.4 || ^7.4 || ^8.0",
"symfony/process": "^6.4 || ^7.4 || ^8.0",
"symfony/serializer": "^6.4 || ^7.4 || ^8.0",
"symfony/yaml": "^6.4 || ^7.4 || ^8.0"
},
"conflict": {
"symfony/cache": "<6.4",
"symfony/expression-language": "<6.4",
"symfony/http-client": "<6.4",
"symfony/messenger": "<6.4",
"symfony/serializer": "<6.4",
"symfony/yaml": "<6.4"
},
"scripts": {
"run-checks": [
"php-cs-fixer fix -vvv",
"phpunit",
"phpstan"
]
},
"config": {
"audit": {
"block-insecure": false
},
"sort-packages": true
}
}