-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 960 Bytes
/
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
{
"name": "kivagant/staticus-core",
"description": "The core part of Staticus Project. See more in the kivagant/staticus project on the GitHub.",
"homepage": "https://github.com/KIVagant/staticus-core",
"keywords": [
"file",
"manager",
"generator",
"api"
],
"type": "library",
"license": "Apache 2.0",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"dev-develop": "1.1-dev"
}
},
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-expressive": "^1.0",
"zendframework/zend-expressive-helpers": "^2.0",
"zendframework/zend-stdlib": "~2.7",
"league/flysystem": "^1.0",
"zendframework/zend-permissions-acl": "^2.6",
"zendframework/zend-session": "^2.7"
},
"autoload" : {
"psr-4": {
"Staticus\\": "src/"
}
},
"require-dev": {
"league/flysystem-memory": "^1.0"
},
"scripts": {
"test": "vendor/bin/phpunit --testsuite StaticusCore"
}
}