-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.34 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
49
50
51
52
53
{
"name": "blast-project/menu-bundle",
"type": "symfony-bundle",
"description": "Manage your sonata admin menu",
"require": {
"php": "^7.1",
"symfony/symfony": "^3.3",
"doctrine/doctrine-bundle": ">=1.6",
"sonata-project/doctrine-orm-admin-bundle": ">=3.1"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.3",
"blast-project/core-bundle": "self.version",
"blast-project/tests-bundle": "self.version",
"symfony/console": ">=3.2",
"phpunit/phpunit": "^6.4"
},
"scripts": {
"test": [
"phpunit"
],
"test-full": [
"@composer install"
]
},
"license": "LGPL-3.0",
"keywords": [
"symfony",
"sonata",
"blast",
"menu"
],
"homepage": "https://github.com/blast-project/MenuBundle",
"authors": [
{
"name": "Vivien FRASCA",
"email": "[email protected]"
},
{
"name": "Libre Informatique",
"homepage": "http://www.libre-informatique.fr/"
}
],
"autoload": {
"psr-4": {
"Blast\\Bundle\\MenuBundle\\": "."
}
},
"suggest": {
"blast-project/core-bundle": "Define sonata admins in yml and more"
},
"version": "dev-wip-platform"
}