-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (50 loc) · 1.22 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
{
"name": "braunstetter/menu-bundle",
"type": "symfony-bundle",
"description": "An easy way to implement complex menu systems in your symfony projects.",
"license": "MIT",
"authors": [
{
"name": "Slowwie",
"email": "michaelbrauner82@gmail.com"
}
],
"scripts": {
"test": [
"phpunit"
],
"phpstan": [
"vendor/bin/phpstan analyse --level max src -vvv"
]
},
"require": {
"php": "^8.1",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/twig-bundle": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0",
"symfony/string": "^6.0|^7.0",
"webmozart/assert": "^1.11",
"braunstetter/helper": "^0.2.5"
},
"autoload": {
"psr-4": {
"Braunstetter\\MenuBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Braunstetter\\MenuBundle\\Test\\": "tests/"
}
},
"require-dev": {
"symfony/test-pack": "^1.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
"nyholm/symfony-bundle-test": "1.8.1",
"symfony/event-dispatcher": "^5.3",
"phpstan/phpstan": "^1.10",
"vimeo/psalm": "^5.12",
"psalm/plugin-phpunit": "^0.18.4",
"symplify/easy-coding-standard": "^11.4",
"symfony/property-access": "^6.3"
}
}