-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.16 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "kivagant/staticus",
"type": "project",
"license": "Apache 2.0",
"homepage": "https://github.com/KIVagant/staticus",
"description": "HTTP-based file proxy and file manager with the REST API",
"keywords": [
"file",
"manager",
"generator",
"api"
],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"dev-develop": "1.1-dev"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"require": {
"php": "^5.6 || ^7.0",
"kivagant/staticus-core": "^1.1",
"kivagant/staticus-search-manager": "^1.0",
"kivagant/staticus-fractal-manager": "^1.0",
"newage/audio-manager": "^1.1",
"zendframework/zend-expressive": "^1.0",
"zendframework/zend-expressive-helpers": "^2.0",
"zendframework/zend-stdlib": "~2.7",
"zendframework/zend-expressive-fastroute": "^1.0",
"mtymek/expressive-config-manager": "^0.4.0",
"zendframework/zend-permissions-acl": "^2.6",
"zendframework/zend-session": "^2.7",
"aura/di": "^3.1",
"league/flysystem": "^1.0",
"vlucas/phpdotenv": "2.2",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.3",
"filp/whoops": "^1.1 || ^2.0",
"league/flysystem-memory": "^1.0"
},
"autoload" : {
"files": [
"library/Common/Config/env.php",
"library/Common/Debug/debug.php"
],
"psr-4": {
"App\\": "src/App/",
"FractalManager\\": "src/FractalManager/",
"SearchManager\\": "src/SearchManager/"
}
},
"autoload-dev": {
"psr-4": {
"StaticusTest\\": "test/StaticusTest/"
}
},
"scripts": {
"post-create-project-cmd": [
"cp -n .env.dist .env | true",
"cp -n phpunit.xml.dist phpunit.xml | true",
"for i in `ls config/*.dist`; do cp -n $i `echo $i | sed 's/.php.dist/.php/'`; done | true",
"for i in `ls config/autoload/*.dist`; do cp -n $i `echo $i | sed 's/.php.dist/.php/'`; done | true"
],
"check": [
"@cs",
"@test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"serve": "php -S 0.0.0.0:8080 -t public/ public/index.php",
"test": "vendor/bin/phpunit"
}
}