forked from stp-sa-hackathon/sa-hackathon-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 790 Bytes
/
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
{
"name": "stp-sa-hackathon/sa-hackathon-backend",
"description": "SA Hackathon Backend Application",
"license": "MIT",
"require": {
"silex/silex": "~1.2",
"twig/twig": "~1.18",
"doctrine/dbal": "v2.5.1",
"symfony/yaml": "v2.6.6",
"guzzlehttp/guzzle": "~5.2",
"symfony/dom-crawler": "~2.6"
},
"authors": [
{
"name": "SA STP Team",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"SaHackathon\\Home\\": "src"
}
},
"scripts": {
"post-install-cmd": [
"cp config/parameters.yml.dist config/parameters.yml"
]
},
"repositories": {
"packagist": { "url": "https://packagist.org", "type": "composer" }
}
}