-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.33 KB
/
Copy pathcomposer.json
File metadata and controls
76 lines (76 loc) · 2.33 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
{
"name": "cache/adapter-bundle",
"description": "A bundle that registers cache implementations as Symfony services supporting PSR-6 and tagging",
"license": "MIT",
"type": "symfony-bundle",
"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://github.com/php-cache/adapter-bundle",
"require": {
"php": "^8.2",
"cache/array-adapter": "^2.0 || ^3.0",
"cache/namespaced-cache": "^2.0",
"psr/cache": "^3.0",
"psr/log": "^3.0",
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/options-resolver": "^6.4 || ^7.0 || ^8.0",
"symfony/yaml": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"cache/cache": "^3.0@dev",
"matthiasnoback/symfony-dependency-injection-test": "^6.3",
"mongodb/mongodb": "^2.0",
"nyholm/symfony-bundle-test": "^3.1",
"php-cs-fixer/shim": "3.95.19",
"phpstan/phpstan": "2.2.8",
"phpunit/phpunit": "^11.5",
"predis/predis": "^2.0 || ^3.0"
},
"suggest": {
"cache/*-adapter": "An implementation of PSR-6 cache",
"cache/cache-bundle": "Integrates cache services with the Symfony framework"
},
"autoload": {
"psr-4": {
"Cache\\AdapterBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cache\\AdapterBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"scripts": {
"coverage": [
"phpunit --coverage-text --coverage-clover=build/coverage.xml",
"php tools/check-coverage.php build/coverage.xml 95"
],
"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"
}
}