-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
70 lines (70 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "webalternatif/flysystem-dsn-bundle",
"description": "A bundle to build Flysystem adapters from DSN (Data Source Name).",
"type": "symfony-bundle",
"keywords": ["flysystem", "dsn", "adapter", "bundle", "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.*",
"psr/container": "^1.1 || ^2.0",
"symfony/config": "^4.4 || ^5.3 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.3 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.3 || ^6.0",
"webalternatif/flysystem-composite": "^0.2.0",
"webalternatif/flysystem-dsn": "^0.5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.15",
"infection/infection": "^0.26",
"league/flysystem-aws-s3-v3": "^3.0",
"league/flysystem-ftp": "^3.0",
"league/flysystem-memory": "^3.0",
"league/flysystem-sftp-v3": "^3.0",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^5.24",
"webalternatif/flysystem-failover-bundle": "^0.4.0",
"webalternatif/flysystem-openstack-swift": "^0.3.0"
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run",
"cs-fix": "php-cs-fixer fix",
"infection": "infection --threads=$(nproc)",
"phpunit": "phpunit",
"psalm": "psalm --threads=$(nproc) --no-cache",
"test": ["@psalm", "@phpunit", "@infection", "@cs-check"]
},
"autoload": {
"psr-4": {
"Webf\\Flysystem\\DsnBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Webf\\Flysystem\\DsnBundle\\": "tests"
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": false
}
},
"archive": {
"exclude": [
"/.github/",
"/tests/",
"/.php-cs-fixer.dist.php",
"/infection.json.dist",
"/phpunit.xml.dist",
"/psalm.xml"
]
}
}