-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.78 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.78 KB
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
{
"name": "orbitale/cms-bundle",
"description": "A simple lightweight CMS bundle for Symfony",
"type": "symfony-bundle",
"keywords": ["symfony", "cms", "bundle"],
"homepage": "https://github.com/Orbitale/CmsBundle",
"license": "MIT",
"require": {
"php": ">=8.1",
"doctrine/annotations": "^1.8|^2.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.5.1",
"doctrine/dbal": "^3.0|^4.0",
"symfony/asset": "^6.4|^7.0",
"symfony/config": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/http-foundation": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/translation": "^6.4|^7.0",
"symfony/twig-bundle": "^6.4|^7.0",
"symfony/validator": "^6.4|^7.0",
"twig/twig": "^2.7|^3.0",
"symfony/string": "^6.4|^7.0"
},
"require-dev": {
"symfony/browser-kit": "^6.4|^7.0",
"symfony/css-selector": "^6.4|^7.0",
"symfony/dom-crawler": "^6.4|^7.0",
"symfony/phpunit-bridge": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0"
},
"suggest": {
"javiereguiluz/easyadmin-bundle": "To manage your pages directly inside your CMS (view documentation)."
},
"autoload": {
"psr-4": {
"Orbitale\\Bundle\\CmsBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Orbitale\\Bundle\\CmsBundle\\Tests\\": "Tests"
}
},
"authors": [
{
"name" : "Alexandre \"Orbitale\" Ancelet",
"email": "alex@orbitale.io",
"homepage": "http://www.orbitale.io/"
}
],
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
}
}