-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 993 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "filicious/ftp",
"description": "FTP adapter for filicious.",
"keywords": ["filesystem", "file", "vfs", "ftp"],
"homepage": "http://filicious.org",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Tristan Lins",
"email": "[email protected]",
"homepage": "http://bit3.de",
"role": "Developer"
},
{
"name": "Christian Schiffler",
"email": "[email protected]",
"homepage": "http://www.cyberspectrum.de",
"role": "Developer"
},
{
"name": "Oliver Hoff",
"email": "[email protected]",
"homepage": "http://www.hofff.com",
"role": "Developer"
}
],
"support": {
"irc": "irc://irc.freenode.org/filicious"
},
"require": {
"filicious/core": "~1"
},
"require-dev": {
"phpunit/phpunit": "3.*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-0": {
"Filicious\\FTP": "src/",
"Filicious\\FTP\\Test": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}