forked from Sioweb/Contao4DummyBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_composer.json
44 lines (44 loc) · 1.18 KB
/
example_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
{
"name": "contao/managed-edition",
"type": "project",
"description": "Contao Open Source CMS",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Leo Feyer",
"homepage": "https://github.com/leofeyer"
}
],
"require": {
"php": ">=5.5.0",
"contao/manager-bundle": "4.3.*",
"contao/calendar-bundle": "^4.3",
"contao/comments-bundle": "^4.3",
"contao/faq-bundle": "^4.3",
"contao/listing-bundle": "^4.3",
"contao/news-bundle": "^4.3",
"contao/newsletter-bundle": "^4.3",
"sioweb/dummy-bundle": "^1.0"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"symfony/phpunit-bridge": "^3.0"
},
"config": {
"component-dir": "assets"
},
"scripts": {
"post-install-cmd": [
"Contao\\ManagerBundle\\Composer\\ScriptHandler::initializeApplication"
],
"post-update-cmd": [
"Contao\\ManagerBundle\\Composer\\ScriptHandler::initializeApplication"
]
},
"repositories": [
{
"type": "path",
"url": "bundles/Sioweb/DummyBundle"
}
]
}