forked from AmericanCouncils/AyamelResourceApiServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.69 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
67
68
69
70
71
72
73
74
{
"name": "ayamel/resource-library-api-server",
"description": "An API server for hosting and sharing multimedia resources between applications and institutions.",
"license": "MIT",
"authors": [
{
"name": "Evan Villemez",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": { "": "src/" }
},
"minimum-stability": "beta",
"prefer-stable": true,
"repositories": [
{
"type":"vcs",
"url":"https://github.com/AmericanCouncils/SoclozMonitoringBundle"
}
],
"require": {
"php": ">=5.4.0",
"ext-apcu": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-pcntl": "*",
"ext-mongo": "*",
"symfony/symfony": "~2.5",
"doctrine/mongodb-odm-bundle": "3.0.*@dev",
"symfony/assetic-bundle": "2.3.*",
"symfony/monolog-bundle": "~2.6.0",
"sensio/distribution-bundle": "2.3.*",
"sensio/generator-bundle": "2.3.*",
"ac/transcoding-bundle": "0.4.*",
"oldsound/rabbitmq-bundle": "~1.1",
"nelmio/api-doc-bundle": "2.6.0",
"jms/serializer-bundle": "0.13.*",
"ac/web-services-bundle": "~0.3",
"ac/media-info-bundle": "1.2.*",
"friendsofsymfony/elastica-bundle": "~3.0",
"ornicar/apc-bundle": "1.0.*",
"ac/model-traits-bundle": "0.1.*",
"socloz/monitoring-bundle": "dev-master#b189ca122eae812856821adba30e6deee7f0f96a",
"google/apiclient": "^1.1@dev"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"guzzle/guzzle": "~3.7",
"fzaninotto/faker": "dev-master#991e39d280afc34a91684e5789023f1b276e4618"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web"
}
}