-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.68 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
78
79
80
81
82
83
{
"name": "marcosadantas/expressive-porto",
"description": "Porto pattern application with zend expressive",
"type": "project",
"homepage": "https://github.com/lpj145/expressive-porto",
"license": "MIT",
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"require": {
"php": "^7.0",
"http-interop/http-middleware": "^0.4.1",
"illuminate/database": "5.5.2",
"illuminate/pagination": "5.5.2",
"jenssegers/mongodb": "3.3.1",
"marcosadantas/authexpressive": "dev-master",
"marcosadantas/expressive-laravelvalidation": "dev-master",
"marcosadantas/expressive-redis": "dev-master",
"monolog/monolog": "^2.0@dev",
"roave/security-advisories": "dev-master",
"symfony/console": "^4.1@dev",
"zendframework/zend-component-installer": "^1.0",
"zendframework/zend-config-aggregator": "^1.0",
"zendframework/zend-expressive": "^2.0.5",
"zendframework/zend-expressive-fastroute": "^2.0",
"zendframework/zend-expressive-helpers": "^4.0",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-stdlib": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^6.0.8 || ^5.7.15",
"squizlabs/php_codesniffer": "^2.8.1",
"zfcampus/zf-development-mode": "^3.1",
"filp/whoops": "^2.1.7"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/lpj145/AuthExpressive"
},
{
"type": "vcs",
"url": "https://github.com/lpj145/expressive-laravelvalidation"
},
{
"type": "vcs",
"url": "https://github.com/lpj145/expressive-redis"
}
],
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"functions.php"
]
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"development-disable": "zf-development-mode disable",
"development-enable": "zf-development-mode enable",
"development-status": "zf-development-mode status",
"check": [
"@cs-check",
"@test"
],
"clear-config-cache": "php bin/clear-config-cache.php",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"serve": "php -S 0.0.0.0:8080 -t public public/index.php",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "coveralls -v"
}
}