-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (93 loc) · 2.87 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
84
85
86
87
88
89
90
91
92
93
{
"name": "_PUBLISHER_/_PROJECT_-app",
"description": "A 12-factor-app in project '_PROJECT_' by _PUBLISHER_",
"homepage": "http://www.example.com/",
"type": "project",
"license": "proprietary",
"authors": [
{
"name": "_NAME_",
"email": "[email protected]"
},
{
"name": "Open Source Community"
}
],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:neam/docker-stack.git"
},
{
"type": "vcs",
"url": "[email protected]:neam/docker-diff-based-layers.git"
},
{
"type": "vcs",
"url": "[email protected]:neam/yii-dna-pre-release-testing.git"
},
{
"type": "vcs",
"url": "[email protected]:neam/yii-dna-deployment.git"
},
{
"type": "vcs",
"url": "[email protected]:neam/yii-dna-test-framework.git"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"neam/docker-stack": "dev-develop",
"neam/yii-dna-pre-release-testing": "dev-develop",
"neam/yii-dna-deployment": "dev-develop",
"neam/yii-dna-test-framework": "dev-develop",
"neam/php-app-config": "dev-develop"
},
"require-dev": {
},
"extra": {
"server": {
"framework": "yii-dna",
"php-config": [
"upload_max_filesize=200M",
"post_max_size=200M",
"memory_limit=128M",
"max_execution_time=300",
"xdebug.default_enable=${XDEBUG_DEFAULT_ENABLE}",
"error_reporting=E_ALL",
"html_errors=on",
"display_errors=${DISPLAY_PHP_ERRORS}",
"short_open_tag=on"
],
"document-root": "external-apis/health-checks",
"index-document": "index.php",
"php-service": "phpha",
"php-runtime": "hhvm",
"memcached-key-prefix": "healthchecks",
"nginx-includes": [
"stack/nginx/include/location-defaults.conf"
],
"nginx-locations": [
{
"location": "/api/",
"document-root": "external-apis/rest-api/www",
"index-document": "index.php",
"php-service": "phpha",
"php-runtime": "hhvm",
"memcached-key-prefix": "api",
"nginx-includes": [
"stack/nginx/include/location-defaults.conf"
]
}
]
}
},
"autoload": {
"psr-4": {
"__PROJECT__\\": "./"
},
"exclude-from-classmap": ["/external-apis/","/dna/","/tmp/","/src-images-build/","/ui/"]
},
"scripts": {}
}