-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·58 lines (58 loc) · 1.46 KB
/
composer.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "glhd/gretel",
"description": "",
"keywords": [
"laravel",
"breadcrumbs"
],
"authors": [
{
"name": "Chris Morrell",
"homepage": "http://www.cmorrell.com"
}
],
"type": "library",
"license": "MIT",
"require": {
"illuminate/support": "^8|^9|^10|^11|^12|^13|14.x-dev|dev-master|dev-main",
"illuminate/routing": "^8|^9|^10|^11|^12|^13|14.x-dev|dev-master|dev-main",
"illuminate/view": "^8|^9|^10|^11|^12|^13|14.x-dev|dev-master|dev-main",
"laravel/serializable-closure": "^1.0|^2.0"
},
"require-dev": {
"orchestra/testbench": "^6.24|^7.10|^8.33|^9.17|^10.11|^11.0|12.x-dev|dev-master|dev-main",
"friendsofphp/php-cs-fixer": "^3.93",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.5|^11.5|^12.5|^13.0"
},
"autoload": {
"psr-4": {
"Glhd\\Gretel\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Glhd\\Gretel\\Tests\\": "tests/",
"Glhd\\Gretel\\Tests\\Database\\Factories\\": "tests/database/factories/"
}
},
"scripts": {
"fix-style": "vendor/bin/php-cs-fixer fix",
"check-style": "vendor/bin/php-cs-fixer fix --diff --dry-run"
},
"extra": {
"laravel": {
"providers": [
"Glhd\\Gretel\\Support\\GretelServiceProvider"
],
"aliases": {
"Gretel": "Glhd\\Gretel\\Support\\Facades\\Gretel"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}