-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
38 lines (38 loc) · 888 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
{
"name": "nimbusoft/flysystem-openstack-swift",
"description": "Flysystem adapter for OpenStack Swift",
"keywords": [
"filesystem",
"filesystems",
"files",
"chrisnharvey",
"storage",
"flysystem",
"openstack",
"opencloud",
"swift"
],
"license": "MIT",
"authors": [
{
"name": "Chris Harvey",
"email": "chris@chrisnharvey.com"
}
],
"require": {
"php": "^7.4 | ^8.0",
"league/flysystem": "^2.0 | ^3.0",
"php-opencloud/openstack": "^3.2",
"guzzlehttp/psr7": "^2.0"
},
"require-dev": {
"mockery/mockery": ">= 1.3.1",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.20"
},
"autoload": {
"psr-4": {
"Nimbusoft\\Flysystem\\OpenStack\\": "src/"
}
}
}