forked from oprudkyi/flysystem-curlftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.86 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
{
"name": "svdv22/flysystem-curlftp",
"description": "Flysystem V2/V3 Adapter for the FTP with cURL implementation (supports Implicit FTP over TLS and proxy)",
"keywords": [
"filesystem", "flysystem", "ftp", "ftps", "ftpd", "files", "file", "implicit FTP over TLS"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vladimir Yuldashev",
"email": "[email protected]"
},
{
"name": "Alexander Rubtsov",
"email": "[email protected]"
},
{
"name": "Oleksii Prudkyi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0.2",
"ext-curl": "*",
"ext-intl": "*",
"league/flysystem": "^2.0 || ^3.0"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.8",
"friendsofphp/php-cs-fixer": "^3.5"
},
"autoload": {
"psr-4": {
"VladimirYuldashev\\Flysystem\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"VladimirYuldashev\\Flysystem\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"@test:style",
"@test:unit"
],
"test:style": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"@php vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run --diff --verbose"
],
"fix:style": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"@php vendor/bin/php-cs-fixer fix --allow-risky=yes --diff --verbose"
],
"test:unit": "sh tests/run.sh",
"test:unit_implicit_ftp_over_tls": "sh tests/run_implicit_ftp_over_tls.sh",
"phpstan": "vendor/bin/phpstan analyse"
},
"minimum-stability": "dev",
"prefer-stable": true
}