-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
66 lines (62 loc) · 1.92 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
64
65
66
{
"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": "pekkisx@gmail.com",
"homepage": "http://diktaattoriporssi.com",
"role": "Developer"
},
{
"name": "Mikko Hirvonen",
"email": "mikko.petteri.hirvonen@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0",
"symfony/event-dispatcher": "~3.4|~4.0",
"ramsey/uuid": "~3.8",
"cocur/slugify": "~3.1",
"pekkis/queue": "~4.0",
"pekkis/temporary-file-manager": "~2.0",
"pekkis/directory-calculator": "~2.0",
"pekkis/mime-types": "~2.0",
"xi/collections": "0.3.*",
"zencoder/zencoder-php": "~2.1",
"aws/aws-sdk-php": "~3.2"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/phpunit-mock-objects": "~2.0",
"phpunit/dbunit": "~1.3",
"doctrine/orm": "~2.6",
"doctrine/dbal": "~2.8",
"doctrine/common": "~2.9",
"symfony/http-foundation": "~4.0",
"symfony/http-kernel": "~4.0",
"symfony/security": "~4.0",
"symfony/console": "~4.0",
"symfony/stopwatch": "~4.0",
"knplabs/gaufrette": "~0.6",
"league/flysystem": "~1.0",
"mongodb/mongodb": "^1.4"
},
"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"
}