forked from DivineOmega/php-file-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 897 Bytes
/
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
{
"name": "divineomega/php-file-sync",
"description": "Synchronise files between multiple local or remote file systems",
"type": "library",
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Jordan Hall",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"league/flysystem": "^1.0",
"divineomega/php-cli-progress-bar": "^2.0",
"nesbot/carbon": "^1.0||^2.27"
},
"require-dev": {
"phpunit/phpunit": "^7.0||^8.0",
"fzaninotto/faker": "^1.6",
"php-coveralls/php-coveralls": "^2.0",
"cache/array-adapter": "^1.0"
},
"autoload": {
"psr-4": {
"DivineOmega\\FileSync\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DivineOmega\\FileSync\\Tests\\": "tests/Integration/"
}
}
}