-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.08 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
{
"name": "cicnavi/simple-file-cache-php",
"description": "PSR-16 simple cache provider based on files.",
"type": "library",
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-openssl": "*",
"ext-gmp": "*",
"psr/simple-cache": "^1.0"
},
"provide": {
"psr/simple-cache-implementation": "1.0"
},
"autoload": {
"psr-4": {
"Cicnavi\\SimpleFileCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cicnavi\\Tests\\SimpleFileCache\\": "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "Marko Ivancic",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require-dev": {
"ext-xdebug": "*",
"vimeo/psalm": "^3.14",
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.4"
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/psalm --show-info=true",
"vendor/bin/phpcs -p"
]
}
}