-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1 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
{
"name": "rabble/admin-bundle",
"type": "symfony-bundle",
"description": "The Rabble admin bundle provides the basic framework for working with Rabble.",
"keywords": ["rabble", "admin", "cms"],
"homepage": "https://rabble.rocks",
"license": "MIT",
"authors": [
{
"name": "Rachel Snijders",
"email": "rainbowvision.bn@gmail.com"
}
],
"require": {
"php": "^8.0",
"liip/imagine-bundle": "^2.3",
"sensio/framework-extra-bundle": "^6.1",
"knplabs/knp-menu-bundle": "^3.0",
"symfony/twig-bundle": "^3.4 | ^4.0 | ^5.0 | ^6.0",
"symfony/framework-bundle": "^3.4 | ^4.4 | ^5.0 | ^6.0",
"friendsofsymfony/jsrouting-bundle": "^3.2"
},
"require-dev": {
"symfony/console": "^3.4 | ^4.4 | ^5.0 | ^6.0"
},
"autoload": {
"psr-4": { "Rabble\\AdminBundle\\": "src/AdminBundle" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}