-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (49 loc) · 1.26 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
{
"name": "thecodeassassin/soul-soldiers",
"description": "Soul-Soldiers Website",
"minimum-stability": "dev",
"authors": [
{
"name": "Stephen Hoogendijk",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"phalcon/incubator": "dev-master",
"mrclay/minify": "2.*",
"swiftmailer/swiftmailer" : "5.0.*",
"cboden/ratchet": "~0.3.5",
"google/recaptcha": "~1.1"
},
"repositories": [
{
"url": "https://github.com/phalcon/incubator",
"type": "package",
"package": {
"name": "phalcon/incubator",
"version": "dev-master",
"source": {
"url": "https://github.com/phalcon/incubator",
"type": "git",
"reference": "master"
}
},
"autoload": {
"classmap": ["/Library/Phalcon"]
}
}
],
"scripts": {
"post-install-cmd": [
],
"post-update-cmd": [
]
},
"autoload": {
"psr-0" : {
"Soul" : "app/src",
"Phalcon" : "vendor/phalcon/incubator/Library"
}
}
}