-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
41 lines (41 loc) · 924 Bytes
/
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
{
"name": "outl1ne/laravel-generate-storage-structure",
"description": "This package generates the Laravel storage folder structure. Useful when mounting an empty directory to replace `storage/` in production or staging environments.",
"keywords": [
"laravel",
"storage",
"outl1ne"
],
"license": "MIT",
"authors": [
{
"name": "Allan Tatter",
"email": "allan@outl1ne.com"
}
],
"require": {
"php": "^7.3|^8.0|^8.1|^8.2|^8.3",
"symfony/console": "^5.0",
"symfony/filesystem": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.1"
},
"autoload": {
"psr-4": {
"Outl1ne\\GenerateStorageStructure\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Outl1ne\\GenerateStorageStructure\\Tests\\": "tests/"
}
},
"bin": [
"bin/generate-storage-structure"
],
"config": {
"sort-packages": true
},
"prefer-stable": true
}