-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.04 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
{
"name": "blood72/laravel-package",
"type": "library",
"description": "Laravel package template",
"license": "MIT",
"keywords": [],
"authors": [
{
"name": "blood72",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/blood72/laravel-package/issues",
"source": "https://github.com/blood72/laravel-package"
},
"require": {
},
"require-dev": {
},
"autoload": {
"psr-4": {
"Blood72\\Package\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Blood72\\Package\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Blood72\\Package\\PackageServiceProvider"
],
"aliases": {
"Package": "Blood72\\Package\\Facades\\PackageFacade"
}
}
},
"scripts": {
"format": "php-cs-fixer fix .",
"test": "phpunit"
},
"minimum-stability": "dev"
}