forked from ems-project/EMSClientHelperBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 808 Bytes
/
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
{
"name" : "elasticms/client-helper-bundle",
"description" : "An elasticms extension for client helper functions (Graphical frontend, API, ... )",
"type" : "symfony-bundle",
"keywords" : [
"elasticms"
],
"license" : "MIT",
"authors" : [{
"name" : "Isabelle Michiels",
"email" : "isabelle.michiels@smals.be"
}
],
"require" : {
"php" : ">=5.5.9",
"symfony/symfony" : "^3.3",
"symfony/finder" : "^3.2",
"twig/twig" : "^1.0||^2.0",
"guzzlehttp/guzzle" : "^6.3",
"elasticsearch/elasticsearch" : "^5.2"
},
"require-dev" : {
"phpunit/phpunit" : "^5.7",
"mockery/mockery" : "^0.9.9"
},
"autoload" : {
"psr-4" : {
"EMS\\ClientHelperBundle\\" : ""
},
"exclude-from-classmap" : [
"/Tests/"
]
},
"extra" : {
"branch-alias" : {
"dev-master" : "0.1-dev"
}
}
}