-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 2.84 KB
/
Copy pathcomposer.json
File metadata and controls
92 lines (92 loc) · 2.84 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
83
84
85
86
87
88
89
90
91
92
{
"name": "cache/cache-bundle",
"description": "Symfony integration for PSR-6 cache pools",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"cache",
"psr-6",
"symfony"
],
"authors": [
{
"name": "Aaron Scherer",
"email": "aequasi@gmail.com",
"homepage": "https://github.com/aequasi"
},
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com",
"homepage": "https://github.com/nyholm"
}
],
"homepage": "https://www.php-cache.com/en/latest/",
"require": {
"php": "^8.2",
"cache/prefixed-cache": "^2.0",
"cache/session-handler": "^2.0",
"cache/tag-interop": "^2.0",
"cache/taggable-cache": "^2.0 || ^3.0",
"psr/cache": "^3.0",
"psr/container": "^2.0",
"symfony/config": "^6.4 || ^7.0 || ^8.0",
"symfony/console": "^6.4 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/http-foundation": "^6.4 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.0 || ^8.0",
"symfony/lock": "^6.4 || ^7.0 || ^8.0",
"symfony/routing": "^6.4 || ^7.0 || ^8.0",
"symfony/var-dumper": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"cache/array-adapter": "^3.0",
"cache/cache": "^2.0 || ^3.0",
"mockery/mockery": "^1.6",
"nyholm/symfony-bundle-test": "^3.1",
"php-cs-fixer/shim": "3.95.19",
"phpstan/phpstan": "2.2.8",
"phpunit/phpunit": "^11.5",
"symfony/web-profiler-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/yaml": "^6.4 || ^7.0 || ^8.0",
"twig/twig": "^3.12"
},
"suggest": {
"cache/adapter-bundle": "Registers PSR-6 cache implementations as Symfony services"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Cache\\CacheBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cache\\CacheBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
},
"scripts": {
"coverage": [
"@php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-clover build/coverage.xml",
"@php tools/check-coverage.php build/coverage.xml 100"
],
"cs:check": "php-cs-fixer fix --dry-run --diff --sequential",
"cs:fix": "php-cs-fixer fix --sequential",
"phpstan": "phpstan analyse --debug --no-progress --memory-limit=1G",
"quality": [
"@cs:check",
"@phpstan",
"@test"
],
"test": "phpunit"
}
}