-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 903 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
35
36
37
{
"name": "glicer/sync-sftp",
"type": "library",
"description": "Sync local files with ftp server",
"keywords": ["sync", "ftp", "file"],
"homepage": "https://github.com/emmanuelroecker/php-sync-ftp",
"license": "MIT",
"authors": [
{
"name": "Emmanuel ROECKER",
"homepage": "http://dev.glicer.com"
},
{
"name": "Rym BOUCHAGOUR",
"homepage": "http://dev.glicer.com"
}
],
"require": {
"php": ">=5.5",
"symfony/finder": "~2.3 || ~3.0",
"phpseclib/phpseclib": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"satooshi/php-coveralls": "~1.0"
},
"autoload": {
"psr-4": {
"GlSyncFtp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GlSyncFtp\\Tests\\": "tests/"
}
}
}