-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·73 lines (73 loc) · 2.45 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
{
"name": "hayk-manasyan/zf3-job-search",
"description": "Search Jobs Application Based on Zend Framework 3",
"type": "project",
"license": "BSD-3-Clause",
"keywords": [
"framework",
"mvc",
"zf",
"Search Jobs"
],
"homepage": "http://smartexy.com/",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.0 || ^7.1 || ^7.2",
"zendframework/zend-component-installer": "^1.0 || ^0.7 || ^1.0.0-dev@dev",
"zendframework/zend-mvc": "^3.0.1",
"zfcampus/zf-development-mode": "^3.0",
"zendframework/zend-cache": "^2.7.1",
"zendframework/zend-db": "^2.8.1",
"zendframework/zend-mvc-form": "^1.0",
"zendframework/zend-json": "^3.0",
"zendframework/zend-log": "^2.9",
"zendframework/zend-mvc-console": "^1.1",
"zendframework/zend-mvc-i18n": "^1.0",
"zendframework/zend-mvc-plugins": "^1.0.1",
"zendframework/zend-psr7bridge": "^0.2.2",
"zendframework/zend-session": "^2.7.1",
"doctrine/doctrine-orm-module": "^1.1",
"zfcampus/zf-console": "^1.3",
"doctrine/migrations": "^1.6",
"zendframework/zend-math": "^3.0",
"zendframework/zend-crypt": "^3.1",
"zendframework/zend-captcha": "^2.6",
"doctrine/annotations": "^1.6",
"doctrine/dbal": "^2.6",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/instantiator": "^1.1",
"doctrine/orm": "2.6.1"
},
"autoload": {
"psr-4": {
"Application\\": "module/Application/src/",
"Github\\" : "module/Github/src",
"Utils\\" : "module/Utils/src",
"Jobs\\" : "module/Jobs/src",
"Stack\\" : "module/Stack/src",
"User\\": "module/User/src/"
}
},
"autoload-dev": {
"psr-4": {
"ApplicationTest\\": "module/Application/test/"
}
},
"extra": [],
"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"
],
"serve": "php -S 0.0.0.0:8080 -t public public/index.php",
"test": "phpunit"
},
"require-dev": {
"zendframework/zend-developer-tools": "^1.1.0"
}
}