Skip to content

Commit 828f6bd

Browse files
committed
Initial code commit
1 parent 4571813 commit 828f6bd

11 files changed

+696
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# php-file-sync
1+
# PHP File Sync
22
Synchronise files between multiple local or remote file systems

composer.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "divineomega/php-file-sync",
3+
"description": "Synchronise files between multiple local or remote file systems",
4+
"type": "library",
5+
"license": "LGPL-3.0-only",
6+
"authors": [
7+
{
8+
"name": "Jordan Hall",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require": {
13+
"php": ">=7.1",
14+
"league/flysystem": "^1.0",
15+
"divineomega/php-cli-progress-bar": "^2.0",
16+
"nesbot/carbon": "^2.27"
17+
},
18+
"autoload": {
19+
"psr-4": {
20+
"DivineOmega\\FileSync\\": "src/"
21+
}
22+
}
23+
}

0 commit comments

Comments
 (0)