This repository was archived by the owner on Jul 4, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
92 lines (92 loc) · 3.23 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "biurad/flysystem",
"type": "library",
"description": "A library for handling filesytem on disk and cloud",
"keywords": ["FileManager","filesystem","theleague flysytem","biurad","php7"],
"homepage": "https://www.biurad.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "[email protected]"
},
{
"name": "Biurad Lap Community",
"homepage": "https://biurad.com/contributors"
}
],
"support": {
"docs": "https://docs.biurad.com/php-flysystem",
"issues": "https://github.com/biurad/php-flysystem/issues",
"rss": "https://github.com/biurad/php-flysystem/releases.atom",
"source": "https://github.com/biurad/php-flysystem"
},
"require": {
"php": "^7.1 || ^8.0",
"league/flysystem": "^1.0",
"league/flysystem-cached-adapter": "^1.0"
},
"require-dev": {
"alcaeus/mongo-php-adapter": "^1.1",
"composer/package-versions-deprecated": "^1.11",
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-azure-blob-storage": "^0.1.6",
"league/flysystem-cached-adapter": "^1.0",
"league/flysystem-gridfs": "^1.0",
"league/flysystem-rackspace": "^1.0",
"league/flysystem-sftp": "^1.0",
"league/flysystem-webdav": "^1.0",
"league/flysystem-ziparchive": "^1.0",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^8.5 || ^9.4",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"spatie/flysystem-dropbox": "^1.0",
"superbalist/flysystem-google-storage": "^7.2",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.11"
},
"autoload": {
"psr-4": {
"Biurad\\FileManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Biurad\\FileManager\\Tests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"suggest": {
"alcaeus/mongo-php-adapter": "GridFS adapter support.",
"league/flysystem-aws-s3-v3": "AwsS3 adapter support.",
"league/flysystem-azure-blob-storage": "Azure adapter support.",
"league/flysystem-cached-adapter": "Adapter caching support.",
"spatie/flysystem-dropbox": "Dropbox adapter support.",
"league/flysystem-gridfs": "GridFS adapter support.",
"league/flysystem-rackspace": "Rackspace adapter support.",
"league/flysystem-replicate-adapter": "Replicate adapter support.",
"league/flysystem-sftp": "Sftp adapter support.",
"league/flysystem-webdav": "WebDav adapter support.",
"league/flysystem-ziparchive": "ZipArchive adapter support.",
"superbalist/flysystem-google-storage": "GoogleCloudStorage adapter support."
},
"scripts": {
"phpcs": "phpcs -q",
"phpstan": "phpstan analyse",
"psalm": "psalm --show-info=true",
"phpunit": "phpunit --no-coverage",
"test": [
"@phpcs",
"@phpstan",
"@psalm",
"@phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}