-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (38 loc) · 861 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
33
34
35
36
37
38
39
40
41
{
"name": "lucian303/silex-skeleton",
"description": "App skeleton Using the Silex Framework",
"version": "0.1.0",
"type": "project",
"authors": [
{
"name": "Lucian Hontau",
"email": "[email protected]",
"homepage": "http://lucianux.com",
"role": "Lead Developer"
}
],
"license": "MIT",
"autoload": {
"classmap": ["vendor/"],
"psr-0": {
"App": "app/src/"
}
},
"require": {
"php": ">=5.3.3",
"silex/silex": "~1.0",
"doctrine/dbal": "~2.3",
"monolog/monolog": "~1.5",
"twig/twig": "~1.12",
"kriswallsmith/assetic": "~1.0",
"mheap/silex-assetic": "1.0.*@dev",
"swiftmailer/swiftmailer": "~5.0",
"symfony/twig-bridge": "~2.2",
"symfony/config": "~2.2",
"symfony/console": "~2.2",
"symfony/form": "~2.2",
"symfony/security": "~2.2",
"symfony/translation": "~2.2",
"symfony/validator": "~2.2"
}
}