forked from stechstudio/laravel-vfs-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 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
47
{
"name": "stechstudio/laravel-vfs-adapter",
"description": "Virtual Filesystem Storage Adapter for Laravel",
"type": "library",
"license": "MIT",
"keywords": [
"vfs",
"flysystem",
"php-vs",
"storage",
"adapter",
"lumen",
"laravel"
],
"autoload": {
"classmap": [
],
"psr-4": {
"STS\\Filesystem\\": "src"
},
"files": [
]
},
"authors": [
{
"name": "Bubba Hines",
"email": "rob@stechstudio.com"
}
],
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"league/flysystem": "^3.10.0",
"illuminate/support": "^5.1 || ^6.0 || ^7.0 || ^9.0 || ^10.0",
"mikey179/vfsstream": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"symfony/var-dumper": "^3",
"ext-fileinfo": "*",
"mockery/mockery": "~1.0",
"phpspec/phpspec": "^7.2"
}
}