forked from Jeroen-G/packager-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.06 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
{
"name": ":kc:vendor/:kc:package",
"description": ":package_description",
"license": ":license",
"authors": [
{
"name": ":author_name",
"email": ":author_email",
"homepage": ":author_homepage"
}
],
"homepage": "https://github.com/:kc:vendor/:kc:package",
"keywords": [
"Laravel", "Backpack", "Backpack for Laravel", "Backpack Addon", ":uc:package"
],
"require": {
"illuminate/support": "~8|~9",
"backpack/crud": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"orchestra/testbench": "~5|~6"
},
"autoload": {
"psr-4": {
":uc:vendor\\:uc:package\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
":uc:vendor\\:uc:package\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --testdox"
},
"extra": {
"laravel": {
"providers": [
":uc:vendor\\:uc:package\\AddonServiceProvider"
]
}
}
}