-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·45 lines (45 loc) · 1.11 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
{
"name": "awobaz/blade-active",
"description": "Laravel Blade directives for the watson/active package",
"license": "MIT",
"keywords": [
"laravel",
"active link",
"current url",
"routing"
],
"authors": [
{
"name": "Claudin J. Daniel",
"email": "cdaniel@awobaz.com"
}
],
"require": {
"php": ">=5.5.0",
"watson/active": "^7.0"
},
"require-dev": {
"laravel/laravel": "~5.4|^6.0|^7.0|~8.0|~9.0|~10.0|~11.0",
"phpunit/phpunit": "~5.4|~6.0|~7.0|~8.0|~9.0|~10.0|~11.0"
},
"autoload": {
"psr-4": {
"Awobaz\\BladeActive\\": "src"
},
"files": [
]
},
"extra": {
"laravel": {
"providers": [
"Awobaz\\BladeActive\\BladeActiveServiceProvider"
]
}
},
"suggest": {
"awobaz/compoships": "Multi-columns relationships for Laravel 5's Eloquent",
"awobaz/eloquent-mutators": "Reusable mutators (getters/setters) for Laravel 5's Eloquent",
"awobaz/eloquent-auto-append": "Automatically append accessors to model serialization",
"awobaz/syntactic": "Syntactic sugar for named and indexed parameters call."
}
}