-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.19 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
{
"name": "bored-programmers/larabreadcrumb",
"description": "LaraBreadcrumb is a comprehensive Laravel package that provides an easy and flexible way to generate breadcrumbs for your Laravel applications. It supports automatic breadcrumb generation based on your routes, customization of breadcrumb titles, and hiding certain breadcrumbs.",
"keywords": [
"laravel",
"breadcrumbs",
"laravel breadcrumbs",
"navigation",
"laravel automatic breadcrumbs",
"laravel navigation",
"breadcrumb generation",
"route breadcrumbs",
"automatic breadcrumbs"
],
"type": "library",
"license": "MIT",
"require": {
"laravel/framework": "^10.0",
"php": "^8.1"
},
"autoload": {
"psr-4": {
"BoredProgrammers\\LaraBreadcrumb\\": "src/"
}
},
"authors": [
{
"name": "Matěj Černý",
"email": "mat.cerny3@seznam.cz"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"extra": {
"laravel": {
"providers": [
"BoredProgrammers\\LaraBreadcrumb\\Providers\\LaraBreadcrumbServiceProvider"
]
}
}
}