-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
61 lines (61 loc) · 1.34 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
{
"name": "chillerlan/php-cache",
"description": "A psr/simple-cache implementation. PHP 8.1+",
"homepage": "https://github.com/chillerlan/php-cache",
"license": "MIT",
"type": "library",
"keywords": [
"cache", "psr-16", "php8"
],
"authors": [
{
"name": "Smiley",
"email": "[email protected]",
"homepage": "https://github.com/codemasher"
},
{
"name": "Contributors",
"homepage":"https://github.com/chillerlan/php-cache/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/chillerlan/php-cache/issues",
"source": "https://github.com/chillerlan/php-cache"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.1",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"psr/simple-cache": "^2.0 || ^3.0",
"chillerlan/php-settings-container": "^3.1"
},
"require-dev": {
"phan/phan": "^5.4",
"phpmd/phpmd": "^2.15",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.9"
},
"autoload": {
"psr-4": {
"chillerlan\\SimpleCache\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\SimpleCacheTest\\": "tests"
}
},
"provide": {
"psr/simple-cache-implementation": "2.0 || 3.0"
},
"scripts": {
"phpunit": "@php vendor/bin/phpunit",
"phan": "@php vendor/bin/phan"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true
}
}