forked from symfony/symfony-standard
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
80 lines (80 loc) · 3.07 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
73
74
75
76
77
78
79
80
{
"name": "cedriclombardot/symfony-ready-to-code",
"minimum-stability": "dev",
"description": "A symfony ready to code version",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.1.x-dev",
"twig/extensions": "dev-master",
"symfony/assetic-bundle": "dev-master",
"symfony/swiftmailer-bundle": "2.1.x-dev",
"symfony/monolog-bundle": "dev-master",
"sensio/distribution-bundle": "dev-master",
"sensio/framework-extra-bundle": "2.1.*",
"sensio/generator-bundle": "2.1.x-dev",
"jms/security-extra-bundle": "1.1.*",
"jms/di-extra-bundle": "1.0.*",
"propel/propel-bundle": "1.1.x-dev",
"propel/propel1": "dev-master",
"willdurand/propel-typehintable-behavior": "dev-master",
"cedriclombardot/admingenerator-activeadmintheme-bundle": "dev-master",
"friendsofsymfony/user-bundle": "dev-master",
"cedriclombardot/admingenerator-user-bundle": "dev-master",
"white-october/pagerfanta-bundle": "dev-master",
"Trsteel/ckeditor-bundle": "dev-master",
"vbardales/multiple-app-kernel-bundle": "dev-master"
},
"require-dev": {
"behat/behat-bundle": "dev-master",
"behat/mink-bundle": "dev-master",
"behat/sahi-client": "dev-master",
"zendframework/zendframework": "dev-master"
},
"repositories": {
"goutte": {
"type": "package",
"package": {
"name": "fabpot/goutte",
"version": "dev-master",
"source": {
"type": "git",
"url": "git://github.com/fabpot/Goutte.git",
"reference": "master"
},
"autoload": {
"psr-0": {
"Goutte": "src/"
}
}
}
},
"sensio-distribution-bundle": {
"type": "vcs",
"url": "git://github.com/cedriclombardot/SensioDistributionBundle.git"
}
},
"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"
},
"extra": {
"symfony-app-dir": [ "frontend", "backend" ],
"symfony-web-dir": "web"
}
}