-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1019 Bytes
/
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
{
"name": "beelab/simple-page-bundle",
"type": "symfony-bundle",
"description": "Managament of simple pages",
"keywords": [
"Page",
"CMS"
],
"homepage": "https://github.com/Bee-Lab",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Massimiliano Arione",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"doctrine/orm": "^2.6",
"symfony/doctrine-bridge": "^4.4 || ^5.0",
"symfony/framework-bundle": "^4.4 || ^5.0",
"symfony/twig-bundle": "^4.4 || ^5.0",
"symfony/validator": "^4.4 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.7.x-dev"
}
},
"autoload": {
"psr-4": {
"Beelab\\SimplePageBundle\\": ""
}
}
}