-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.15 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "phpab/storage-zendframework",
"type": "library",
"description": "A library extension on phpab/phpab that adds support for Zend Framework storage.",
"keywords": [
"phpab",
"storage-zendframework",
"storage",
"zendframework",
"session",
"sessions",
"cookie",
"cookies"
],
"homepage": "https://phpab.github.io",
"license": "MIT",
"authors": [
{
"name": "Walter Tamboer",
"email": "walter@tamboer.nl",
"homepage": "http://waltertamboer.nl",
"role": "Developer"
}
],
"require": {
"php": "~5.5|~7.0",
"zendframework/zend-session": "^2.7",
"phpab/phpab": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"scrutinizer/ocular": "^1.3",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-4": {
"PhpAb\\Storage\\Adapter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhpAb\\Storage\\Adapter\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}