-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.06 KB
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"name": "jugid/automatic-breadcrumbs-bundle",
"description": "Create automatic and manual breadcrumbs",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Jugid\\AutomaticBreadcrumbs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jugid\\AutomaticBreadcrumbs\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Julien Gidel",
"email": "gidjulien@gmail.com"
}
],
"require": {
"php": ">=8.1",
"symfony/routing": "^6.3",
"symfony/config": "^6.3",
"symfony/http-foundation": "^6.3",
"symfony/http-kernel": "^6.3",
"symfony/event-dispatcher": "^6.3",
"twig/twig": "^3.0",
"symfony/dependency-injection": "^6.3",
"symfony/yaml": "^6.3"
},
"scripts": {
"unit-tests": [
"vendor/bin/phpunit --colors=always --testsuite main --coverage-clover ./coverage.xml "
]
},
"require-dev": {
"symfony/test-pack": "^1.1"
}
}