-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·42 lines (42 loc) · 1014 Bytes
/
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
{
"name": "jmf/simple-cache",
"description" : "Cache package implementing PSR-16 simple cache interface.",
"license": "mit",
"type": "library",
"require": {
"php": ">=8.3",
"psr/clock": "^1.0",
"psr/log": "^3.0",
"psr/simple-cache": "^3.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"phing/phing": "^2.17",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.1",
"rector/rector": "^1.0",
"squizlabs/php_codesniffer": "^3.8"
},
"suggest": {
"ext-memcached": "*",
"jmf/time": "^1.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Jmf\\SimpleCache\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jmf\\SimpleCache\\": "tests/unit/src"
}
},
"provide": {
"psr/simple-cache-implementation": "^3.0"
}
}