-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
35 lines (35 loc) · 1.35 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
{
"name": "apy/breadcrumbtrail-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle to generate a dynamic Twig breadcrumbs trail via Annotations, PHP Attributes or PHP methods.",
"keywords": ["symfony", "breadcrumb Trail", "breadcrumbs", "fil ariane", "annotation"],
"homepage": "https://github.com/Abhoryo/APYBreadcrumbTrailBundle",
"license": "MIT",
"require": {
"php": ">=7.2",
"symfony/framework-bundle": "^4.4|^5.0|^6.0",
"twig/twig": "^2.15|^3.0",
"symfony/deprecation-contracts": "^2.4|^3.0"
},
"scripts": {
"test": "vendor/bin/simple-phpunit --testdox"
},
"suggest": {
"doctrine/doctrine-bundle": "To allow adding breadcrumbs on controller actions by the use of annotations.",
"twig/twig": "To allow adding breadcrumbs via Twig templates."
},
"autoload": {
"psr-4": { "APY\\BreadcrumbTrailBundle\\": "src/" }
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0|^6.0",
"nyholm/symfony-bundle-test": "^v2.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"doctrine/doctrine-bundle": "^v1.0|^v2.0",
"doctrine/annotations": "^v1.7",
"symfony/twig-bundle": "^3.4|^4.0|^5.0|^6.0"
},
"autoload-dev": {
"psr-4": { "APY\\BreadcrumbTrailBundle\\": "tests/" }
}
}