-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1002 Bytes
/
composer.json
File metadata and controls
47 lines (47 loc) · 1002 Bytes
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
{
"name": "hieu-le/active",
"description": "The helper class for Laravel applications to get active class base on current route",
"keywords": [
"laravel",
"active",
"routing"
],
"license": "MIT",
"homepage": "https://www.hieule.info/tag/laravel-active/",
"authors": [
{
"name": "Hieu Le",
"email": "letrunghieu.cse09@gmail.com",
"homepage": "https://www.hieule.info"
}
],
"require": {
"php": ">=7.2",
"laravel/framework": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"orchestra/testbench": "^5.0"
},
"autoload": {
"psr-4": {
"HieuLe\\Active\\": "src/",
"HieuLe\\ActiveTest\\": "tests/"
},
"files": [
"src/helpers.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"HieuLe\\Active\\ActiveServiceProvider"
],
"aliases": {
"Active": "HieuLe\\Active\\Facades\\Active"
}
}
}
}