forked from dwightwatson/active
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.03 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1.03 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
{
"name": "watson/active",
"description": "Laravel helper for recognising the current route, controller and action",
"keywords": ["laravel", "active", "routing"],
"license": "MIT",
"authors": [
{
"name": "Dwight Watson",
"email": "dwight@studiousapp.com"
}
],
"require": {
"php": ">=7.2",
"illuminate/config": "~5.5",
"illuminate/http": "~5.5",
"illuminate/routing": "~5.5",
"illuminate/support": "~5.5"
},
"require-dev": {
"phpunit/phpunit": "~8.0",
"mockery/mockery": "~1.0"
},
"autoload": {
"psr-4": {
"Watson\\Active\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Watson\\Active\\ActiveServiceProvider"
],
"aliases": {
"Active": "Watson\\Watson\\Facades\\Active"
}
}
},
"minimum-stability": "stable"
}