-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.5 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
{
"name": "santoshborate/zf3-album",
"description": "Album Application for Zend Framework zend-mvc applications",
"type": "project",
"license": "proprietary",
"keywords": [
"framework",
"mvc",
"zf"
],
"homepage": "http://framework.zend.com/",
"require": {
"php": "^7.2",
"zendframework/zend-component-installer": "^1.0 || ^2.1",
"zendframework/zend-mvc": "^3.1.1",
"zfcampus/zf-development-mode": "^3.2",
"zendframework/zend-modulemanager": "^2.7",
"zendframework/zend-db": "^2.8.1",
"zendframework/zend-mvc-form": "^1.0",
"zendframework/zend-navigation": "^2.8",
"zendframework/zend-paginator": "^2.7",
"zendframework/zend-modulemanager": "^2.7",
"zendframework/zend-inputfilter": "^2.7",
"ext-pdo": "*"
},
"autoload": {
"psr-4": {
"Album\\": "module/Album/src/"
}
},
"autoload-dev": {
"psr-4": {
"AlbumTest\\": "module/Album/test/"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"development-disable": "zf-development-mode disable",
"development-enable": "zf-development-mode enable",
"development-status": "zf-development-mode status",
"post-create-project-cmd": [
"@development-enable",
"php bin/update-gitignore.php"
],
"serve": "php -S 0.0.0.0:8082 -t public",
"test": "phpunit"
}
}