-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "tobias/zend-expressive-session-zf1",
"description": "ext-session persistence adapter for zend-expressive-session and compatible to ZF1",
"keywords": [
"migration",
"components",
"ext-session",
"psr-7",
"session",
"zf",
"zf1",
"zendframework",
"zendframework1",
"zend-expressive"
],
"support": {
"issues": "https://github.com/tobias/zend-expressive-session-zf1/issues",
"source": "https://github.com/tobias/zend-expressive-session-zf1",
"rss": "https://github.com/tobias/zend-expressive-session-zf1/releases.atom"
},
"homepage": "https://github.com/tobias/zend-expressive-session-zf1",
"license": "MIT",
"require": {
"php": "^7.1",
"ext-session": "*",
"dflydev/fig-cookies": "^1.0 || ^2.0",
"zendframework/zend-expressive-session": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0.2",
"roave/security-advisories": "dev-master",
"zendframework/zend-coding-standard": "~1.0.0",
"zendframework/zend-diactoros": "^2.0",
"zendframework/zendframework1": "1.*"
},
"config": {
"sort-packages": true
},
"extra": {
"zf": {
"config-provider": "Tobias\\Zend\\Expressive\\Zf1Session\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"Tobias\\Zend\\Expressive\\Zf1Session\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TobiasTest\\Zend\\Expressive\\Zf1Session\\": "tests/"
}
},
"prefer-stable": true,
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}