forked from NetCommons3/NetCommons3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.61 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
{
"name": "netcommons/netcommons3",
"description": "NetCommons3",
"type": "cms",
"keywords": ["CMS"],
"homepage": "http://www.netcommons.org/",
"license": "LicenseRef-NetCommons",
"license-ref-net-commons": "https://raw.githubusercontent.com/NetCommons3/NetCommons3/master/license.txt",
"authors": [
{
"name": "NetCommons Community",
"homepage": "https://github.com/NetCommons3/NetCommons3/graphs/contributors"
}
],
"extra": {
"installer-paths": {
"app/Plugin/{$name}": ["type:cakephp-plugin"]
}
},
"repositories": [
{"type": "vcs", "url": "https://github.com/NetCommons3/cakephp-upload.git"},
{"type": "vcs", "url": "https://github.com/NetCommons3/migrations.git"}
],
"require": {
"cakephp/cakephp": "~2.10@stable",
"netcommons/install": "@stable",
"josegonzalez/cakephp-upload": "~2.0@stable",
"jms/serializer": "1.1.0@stable"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "~1.0@stable",
"doctrine/annotations": "1.2.*@stable",
"dompdf/dompdf": "~0.6@stable",
"mayflower/php-codebrowser": "~1.1@stable",
"mustangostang/spyc": "~0.6@stable",
"phpdocumentor/phpdocumentor": "2.*@stable",
"phploc/phploc": "2.*@stable",
"phpmd/phpmd" : "~2.6.0@stable",
"phpunit/phpunit": "~5.7@stable",
"php-coveralls/php-coveralls": "~1.0@stable",
"sebastian/phpcpd": "*@stable",
"symfony/debug": "2.8.*@stable",
"symfony/dependency-injection": "2.8.*@stable",
"symfony/filesystem": "2.8.*@stable",
"symfony/translation": "2.8.*@stable",
"zendframework/zend-cache": "2.5.1",
"zendframework/zend-eventmanager": "2.5.1",
"zendframework/zend-i18n": "2.5.1",
"zendframework/zend-json": "2.5.1",
"zendframework/zend-math": "2.5.1",
"zendframework/zend-serializer": "2.5.1",
"zendframework/zend-servicemanager": "2.5.1",
"zendframework/zend-stdlib": "2.5.1"
},
"bin": [
"lib/Cake/Console/cake"
],
"config": {
"vendor-dir": "vendors",
"process-timeout": 3000
},
"scripts": {
"post-install-cmd": ["app/Console/cake install.install install_bower"],
"post-update-cmd": [
"app/Console/cake install.install install_bower"
]
}
}