generated from grosv/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.24 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
{
"name": "grosv/shiftable-configs",
"description": "Modify core Laravel configurations without modifying the config files themselves",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ed Grosvenor",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"illuminate/support": "^5.5|^5.6|^5.7|^5.8|^6.0|^7.0|^8.0",
"ext-json": "*",
"symfony/var-exporter": "^4.3|^5.1"
},
"require-dev": {
"orchestra/testbench": "^5.0",
"friendsofphp/php-cs-fixer": "^2.16",
"laravel/helpers": "^1.2"
},
"autoload": {
"psr-4": {
"Grosv\\ShiftableConfigs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"App\\": "vendor/orchestra/testbench-core/laravel/app"
}
},
"extra": {
"laravel": {
"providers": "Grosv\\ShiftableConfigs\\ShiftableConfigsProvider"
}
},
"scripts": {
"lint": "php-cs-fixer fix -v",
"test:unit": "phpunit",
"test": [
"@lint",
"@test:unit"
]
}
}