This repository has been archived by the owner on Feb 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
72 lines (71 loc) · 2.18 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
{
"name": "dmlab/skapp",
"description": "A fast ZF2 skeleton application",
"license": "BSD-3-Clause",
"keywords": [
"framework",
"zf2"
],
"minimum-stability": "dev",
"homepage": "https://github.com/leogr/ZendSkeletonApp",
"require": {
"php": ">=5.4.0",
"zendframework/zendframework": "dev-master",
"widmogrod/zf2-assetic-module": "1.3.*",
"oyejorge/less.php": "~1.5",
"cssmin/cssmin": "*",
"mrclay/minify": "2.2.*",
"ripaclub/zf2-sphinxsearch": ">=0.6",
"robloach/component-installer": "*",
"components/jquery": "1.11.*",
"rogeriopradoj/respond": "*",
"afarkas/html5shiv": "*",
"twbs/bootstrap": "3.1.*",
"fortawesome/font-awesome": "4.0.*",
"ripaclub/zf2-hanger-snippet": "dev-master",
"leogr/zf2-auth-module" : "dev-develop",
"leogr/zf2-facebook-module" : "dev-develop",
"ripaclub/zf2-matryoshka-module" : "dev-develop"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/leogr/zf2-auth-module.git"
},
{
"type": "vcs",
"url": "https://github.com/leogr/zf2-facebook-module.git"
},
{
"type": "vcs",
"url": "https://github.com/ripaclub/matryoshka.git"
},
{
"type": "vcs",
"url": "https://github.com/ripaclub/matryoshka-wrappers.git"
},
{
"type": "vcs",
"url": "https://github.com/ripaclub/zf2-matryoshka-module.git"
},
{
"type": "vcs",
"url": "https://github.com/ripaclub/zf2-hanger-snippet.git"
},
{
"type": "package",
"package": {
"name": "cssmin/cssmin",
"version": "3.0.1",
"dist": { "url": "http://cssmin.googlecode.com/files/cssmin-v3.0.1.php", "type": "file" },
"autoload": { "classmap": [ "cssmin-v3.0.1.php" ] }
}
}
],
"scripts": {
"post-install-cmd": [
"chmod -R 666 public/_/assets",
"chmod -R 666 data"
]
}
}