-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
40 lines (40 loc) · 981 Bytes
/
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
{
"name": "larapack/voyager-hooks",
"description": "Hooks integrated in Voyager",
"keywords": ["laravel", "hooks", "voyager"],
"license": "MIT",
"homepage": "https://larapack.io/",
"support": {
"issues": "https://github.com/larapack/voyager-hooks/issues",
"source": "https://github.com/larapack/voyager-hooks"
},
"authors": [
{
"name": "Mark Topper",
"email": "[email protected]"
}
],
"require": {
"larapack/hooks": "~1.0.2"
},
"require-dev": {
"orchestra/testbench": ">=3.0"
},
"autoload": {
"psr-4": {
"Larapack\\VoyagerHooks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Larapack\\VoyagerHooks\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Larapack\\VoyagerHooks\\VoyagerHooksServiceProvider"
]
}
}
}