-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·60 lines (55 loc) · 2.05 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
{
"repositories": [
{
"type": "composer",
"url": "http://packagist.org/"
}
],
"name": "symfony/framework-standard-edition",
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "*",
"doctrine/orm": ">=2.2.3,<2.4-dev",
"doctrine/doctrine-bundle": "1.0.*",
"doctrine/annotations": "@stable",
"twig/extensions": "1.0.*",
"symfony/assetic-bundle": "@stable",
"symfony/swiftmailer-bundle": "@stable",
"symfony/monolog-bundle": "@stable",
"sensio/distribution-bundle": "@stable",
"sensio/framework-extra-bundle": "@stable",
"sensio/generator-bundle": "@stable",
"jms/security-extra-bundle": "@stable",
"jms/di-extra-bundle": "@stable",
"friendsofsymfony/user-bundle": "*",
"gregwar/captcha-bundle": "dev-master",
"knplabs/knp-snappy": "*",
"knplabs/knp-snappy-bundle": "dev-master"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web"
}
}