-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.13 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
{
"name": "orumad/lumen-config-cache",
"description": "Adds the Laravel command `php artisan config:cache` to Lumen",
"type": "library",
"keywords": [
"orumad",
"lumen-config-cache",
"lumen",
"laravel",
"laravel-6-package",
"laravel-7-package",
"laravel-8-package"
],
"homepage": "https://github.com/orumad/lumen-config-cache",
"license": "MIT",
"authors": [
{
"name": "Daniel Muñoz",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0"
},
"autoload": {
"psr-4": {
"Orumad\\ConfigCache\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Orumad\\ConfigCache\\ServiceProviders\\ConfigCacheServiceProvider"
],
"aliases": {
"ConfigCache": "Orumad\\ConfigCache\\Facades\\ConfigCacheFacade"
}
}
}
}