-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.09 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
{
"name": "hedii/laravel-ovh-swift-storage",
"description": "Out of the box Ovh Swift storage usage for Laravel",
"keywords": ["laravel", "storage", "filesystem", "disk", "ovh", "swift", "openstack", "hedii"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "hedii",
"email": "contact@hedichaibi.com"
}
],
"require": {
"php": "^7.4|^8.0",
"laravel/framework": "^8.12",
"nimbusoft/flysystem-openstack-swift": "^0.3.4"
},
"require-dev": {
"orchestra/testbench": "^6.0"
},
"autoload": {
"psr-4": {
"Hedii\\LaravelOvhSwiftStorage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hedii\\LaravelOvhSwiftStorage\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Hedii\\LaravelOvhSwiftStorage\\OvhSwiftStorageServiceProvider"
]
}
}
}