forked from xi-project/xi-filelib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (59 loc) · 1.8 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": "xi/filelib",
"type": "library",
"description": "File library for PHP",
"keywords": ["file management", "file", "image", "video"],
"homepage": "http://github.com/xi-project/xi-filelib",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Mikko Forsström",
"email": "[email protected]",
"homepage": "http://diktaattoriporssi.com",
"role": "Developer"
},
{
"name": "Mikko Hirvonen",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"symfony/event-dispatcher": "~2.0",
"dflydev/apache-mime-types": "~1.0",
"rhumsaa/uuid": "~2.3",
"cocur/slugify": "~1.0",
"xi/transliterator": "0.5.*",
"pekkis/queue": "0.5.*",
"xi/collections": "0.3.*",
"zencoder/zencoder-php": "~2.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/phpunit-mock-objects": "~2.0",
"phpunit/dbunit": "~1.3",
"doctrine/orm": "~2.3",
"doctrine/dbal": "~2.3",
"doctrine/common": "~2.3",
"symfony/http-foundation": "~2.2",
"symfony/http-kernel": "~2.2",
"symfony/security": "~2.2",
"symfony/console": "~2.2",
"symfony/stopwatch": "~2.2",
"knplabs/gaufrette": "~0.1",
"league/flysystem": "~1.0"
},
"suggest": {
"ext-mongo": "For MongoDB backend and GridFS storage",
"doctrine/dbal": "For Doctrine DBAL backend",
"doctrine/orm": "For Doctrine ORM backend",
"knplabs/gaufrette": "For Gaufrette support"
},
"autoload": {
"psr-0": {
"Xi\\Filelib": "library/"
}
},
"minimum-stability": "stable"
}