-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
48 lines (48 loc) · 1.37 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
{
"name": "orbitale/cms-bundle",
"description": "A simple CMS bundle for Symfony",
"type": "symfony-bundle",
"keywords": ["symfony", "cms", "bundle"],
"homepage": "https://github.com/Orbitale/CmsBundle",
"license": "MIT",
"require": {
"php": "^7.0",
"behat/transliterator": "^1.0",
"doctrine/doctrine-bundle": "^1.5",
"doctrine/orm": "^2.4",
"symfony/asset": "^3.0",
"symfony/framework-bundle": "^3.0",
"symfony/finder": "^3.0",
"symfony/templating": "^3.0",
"symfony/translation": "^3.0",
"symfony/twig-bundle": "^3.0",
"symfony/validator": "^3.0",
"symfony/yaml": "^3.0",
"twig/twig": "^1.23|^2.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"symfony/browser-kit": "^3.0",
"symfony/css-selector": "^3.0"
},
"suggest": {
"javiereguiluz/easyadmin-bundle": "To manage your pages directly inside your CMS (view documentation)"
},
"autoload": {
"psr-4": {
"Orbitale\\Bundle\\CmsBundle\\": ""
}
},
"authors": [
{
"name" : "Alexandre \"Orbitale\" Ancelet",
"email": "[email protected]",
"homepage": "http://www.orbitale.io/"
}
],
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}