forked from vyuldashev/flysystem-curlftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.45 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": "vladimir-yuldashev/flysystem-curlftp",
"description": "Flysystem Adapter for the FTP with cURL implementation",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vladimir Yuldashev",
"email": "[email protected]"
},
{
"name": "Alexander Rubtsov",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5|^8.0",
"ext-curl": "*",
"ext-intl": "*",
"league/flysystem": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"larapack/dd": "^1.1",
"friendsofphp/php-cs-fixer": "^2.17",
"fakerphp/faker": "^1.12"
},
"autoload": {
"psr-4": {
"VladimirYuldashev\\Flysystem\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"VladimirYuldashev\\Flysystem\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"scripts": {
"test": [
"@test:style",
"@test:unit"
],
"test:style": "@php vendor/bin/php-cs-fixer fix --config=.php_cs.dist --allow-risky=yes --dry-run --diff --verbose",
"test:unit": "sh tests/run.sh",
"fix:style": "@php vendor/bin/php-cs-fixer fix --config=.php_cs.dist --allow-risky=yes --diff --verbose"
},
"minimum-stability": "dev",
"prefer-stable": true
}