-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
63 lines (63 loc) · 1.26 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "filicious/core",
"description": "filicious is a high level object oriented filesystem abstraction for PHP.",
"keywords": [
"filesystem",
"file",
"vfs"
],
"homepage": "http://filicious.org",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Tristan Lins",
"email": "tristan.lins@bit3.de",
"homepage": "http://bit3.de",
"role": "Developer"
},
{
"name": "Christian Schiffler",
"email": "c.schiffler@cyberspectrum.de",
"homepage": "http://www.cyberspectrum.de",
"role": "Developer"
},
{
"name": "Oliver Hoff",
"email": "oliver@hofff.com",
"homepage": "http://www.hofff.com",
"role": "Developer"
}
],
"support": {
"irc": "irc://irc.freenode.org/filicious"
},
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "3.*",
"symfony/event-dispatcher": "~2.4"
},
"autoload": {
"psr-0": {
"Filicious": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Filicious\\Test": "test/"
}
},
"suggest": {
"symfony/event-dispatcher": "Add events to Filicious.",
"filicious/ftp": "Adds ftp support to Filicious.",
"filicious/sftp": "Adds sftp support to Filicious."
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-develop": "1.0.x-dev"
}
}
}