-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 908 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 908 Bytes
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
{
"name": "jord-jd/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": "jordan@hall05.co.uk"
}
],
"require": {
"php": ">=7.1",
"league/flysystem": "^1.0",
"jord-jd/php-cli-progress-bar": "^4.0",
"nesbot/carbon": "^1.0||^2.27"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"fakerphp/faker": "^1.23",
"php-coveralls/php-coveralls": "^2.0",
"cache/array-adapter": "^1.0"
},
"autoload": {
"psr-4": {
"JordJD\\FileSync\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JordJD\\FileSync\\Tests\\": "tests/Integration/"
}
},
"replace": {
"divineomega/php-file-sync": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}