-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
executable file
·50 lines (50 loc) · 1.1 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
46
47
48
49
50
{
"name": "poowf/otter",
"description": "A relatively automatic CRUD backend administration panel for Laravel",
"keywords": [
"laravel",
"administration",
"backend"
],
"license": "MIT",
"authors": [
{
"name": "Zane J. Chua",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"illuminate/console": "^6.0",
"illuminate/routing": "^6.0"
},
"autoload": {
"psr-4": {
"Poowf\\Otter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Poowf\\Otter\\Tests\\": "tests/"
}
},
"support" : {
"source" : "https://github.com/poowf/otter",
"issues" : "https://github.com/poowf/otter/issues"
},
"extra": {
"laravel": {
"providers": [
"Poowf\\Otter\\OtterServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"orchestra/testbench": "^4.0"
}
}