-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.46 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
48
49
50
51
52
53
54
{
"name": "webalternatif/flysystem-openstack-swift",
"description": "Flysystem v2 adapter for OpenStack Swift",
"type": "library",
"keywords": ["flysystem", "adapter", "openstack", "swift", "filesystem", "storage"],
"license": "MIT",
"authors": [
{
"name": "Web|Alternatif",
"email": "[email protected]",
"homepage": "https://www.webalternatif.com"
}
],
"require": {
"php": "8.0.* || 8.1.* || 8.2.* || 8.3.*",
"php-opencloud/openstack": "^3.1",
"league/flysystem": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"league/flysystem-adapter-test-utilities": "^3.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.24"
},
"scripts": {
"phpunit": "phpunit",
"psalm": "psalm --threads=$(nproc) --no-cache",
"test": ["@psalm", "@phpunit"]
},
"autoload": {
"psr-4": {
"Webf\\Flysystem\\OpenStackSwift\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Webf\\Flysystem\\OpenStackSwift\\": "tests/"
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"archive": {
"exclude": [
"/.github/",
"/tests/",
"/.php-cs-fixer.dist.php",
"/phpunit.xml.dist",
"/psalm.xml"
]
}
}