-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.1 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "there4/slim-stash-middleware",
"description": "Slim Stash Cache Middleware",
"keywords": ["slim", "cache", "caching"],
"homepage": "https://github.com/there4/slim-stash-middleware",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Craig Davis",
"email": "craig@there4development.com"
}
],
"support": {
"issues": "https://github.com/there4/slim-stash-middleware/issues",
"source": "https://github.com/there4/slim-stash-middleware"
},
"autoload": {
"psr-0": {
"There4": "lib/"
}
},
"autoload-dev": {
"psr-0": {
"There4Test": "tests/"
}
},
"require": {
"tedivm/stash": "0.12.*"
},
"require-dev": {
"slim/slim": "2.4.*",
"phpunit/phpunit": "4.*",
"squizlabs/php_codesniffer": "1.*"
},
"minimum-stability": "dev",
"scripts": {
"test" : "vendor/bin/phpunit --verbose --coverage-text",
"sniff" : "vendor/bin/phpcs --standard=PSR2 --extensions=php lib tests"
}
}