forked from KnpLabs/KnpMenuBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.25 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
{
"name": "planhero-kvieth/knp-menu-bundle",
"description": "This bundle provides an integration of the KnpMenu library",
"keywords": ["menu"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Knplabs",
"homepage": "http://knplabs.com"
},
{
"name": "Christophe Coevoet",
"email": "[email protected]"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
}
],
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"planhero-kvieth/knp-menu": "dev-master",
"symfony/framework-bundle": "^3.4 | ^4.4 | ^5.0 | ^6.0 | ^6.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/expression-language": "^3.4 | ^4.4 | ^5.0 | ^6.0 | ^6.1",
"symfony/phpunit-bridge": "^6.0 | ^6.1",
"symfony/templating": "^3.4 | ^4.4 | ^5.0 | ^6.0 | ^6.1"
},
"autoload": {
"psr-4": { "Knp\\Bundle\\MenuBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Knp\\Bundle\\MenuBundle\\Tests\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}