forked from Oryzone/OryzoneMediaStorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.61 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
{
"name": "oryzone/media-storage",
"type": "library",
"description": "Php 5.3 library to abstract file storage and retrieval",
"keywords": ["file", "filesystem", "media", "abstraction"],
"minimum-stability": "dev",
"homepage": "https://github.com/Oryzone/OryzoneMediaStorage",
"license": "MIT",
"authors": [
{
"name": "Oryzone Team",
"homepage": "http://oryzone.com"
},
{
"name": "Luciano Mammino",
"email": "lmammino@oryzone.com",
"homepage": "http://oryzone.com",
"role": "Developer"
},
{
"name": "Andrea Mangano",
"email": "amangano@oryzone.com",
"homepage": "http://oryzone.com",
"role": "Designer"
}
],
"require": {
"php": ">=5.3.2",
"ext-xml": "*"
},
"require-dev": {
"mikey179/vfsStream": "dev-master",
"pimple/pimple": "1.0.*@dev",
"doctrine/common": "*",
"imagine/Imagine": "*",
"kriswallsmith/buzz": "*"
},
"suggest": {
"oryzone/media-storage-bundle": "*",
"pimple/pimple": "To use default factories",
"doctrine/common": "For caching request in integration services",
"imagine/Imagine": "To process images in Image and Video providers",
"kriswallsmith/buzz": "For the API http requests used in Youtube and Vimeo providers"
},
"autoload": {
"psr-0": { "Oryzone": "lib/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}