forked from APY/APYBreadcrumbTrailBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.43 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
{
"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": "^3.4|^4.0|^5.0",
"twig/twig": "^1.41|^2.0|^3.0",
"symfony/deprecation-contracts": "^2.4"
},
"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",
"nyholm/symfony-bundle-test": "^1.5",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"doctrine/doctrine-bundle": "^v1.0|^v2.0",
"symfony/twig-bundle": "^3.4|^4.0|^5.0"
},
"conflict": {
"doctrine/annotations": "< 1.7",
"symfony/framework-bundle": "<3.4.26 || >4 <4.1.12 || >4.2 <4.2.7"
},
"autoload-dev": {
"psr-4": { "APY\\BreadcrumbTrailBundle\\": "tests/" }
}
}