-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (50 loc) · 1.32 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
{
"name": "phpab/storage-aurasession",
"description": "Store session using Aura libraries.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/phpab/storage-aurasession",
"authors": [
{
"name": "Walter Tamboer",
"email": "[email protected]",
"homepage": "https://github.com/waltertamboer",
"role": "Developer"
},
{
"name": "Patrick Heller",
"email": "[email protected]",
"homepage": "https://github.com/psren",
"role": "Developer"
},
{
"name": "Mariano F.co Benítez Mulet",
"email": "[email protected]",
"homepage": "https://github.com/pachico",
"role": "Developer"
}
],
"require": {
"php": "~5.5|~7.0",
"phpab/phpab": "dev-master",
"aura/session": "2.0.1"
},
"autoload": {
"psr-4": {
"PhpAb\\Storage\\Adapter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhpAb\\Storage\\Adapter\\": "tests"
}
},
"scripts": {
"test": "phpunit --stderr"
},
"require-dev": {
"scrutinizer/ocular": "^1.3",
"phpunit/phpunit": "4.*",
"squizlabs/php_codesniffer": "^2.5"
}
}