-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
49 lines (49 loc) · 1.56 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
{
"name": "ec-europa/oe-poetry-client",
"description": "Client library for the European Commission Poetry Service",
"type": "library",
"minimum-stability": "stable",
"prefer-stable": true,
"license": "EUPL-1.2",
"require": {
"ext-soap": "*",
"jeremeamia/superclosure": "~2.2",
"league/plates": "^3.3.0",
"php": ">=5.6",
"pimple/pimple": "~3.2.3",
"psr/log": "~1",
"symfony/dom-crawler": "^2.8|^3.0",
"symfony/event-dispatcher": "^2.8|^3.0",
"symfony/expression-language": "^2.8|^3.0",
"symfony/validator": "^2.8|^3.0",
"symfony/yaml": "~3.3|~4.0"
},
"require-dev": {
"guzzle/guzzle": "~2.7|~3.0",
"internations/http-mock": "~0.8",
"mockery/mockery": "^0.9.9",
"openeuropa/code-review": "1.0.0-alpha1",
"peridot-php/leo": "~1.6",
"phpspec/phpspec": "~4.0@alpha",
"phpunit/phpunit": "~5.5|~6",
"sebastian/comparator": ">1.2.3"
},
"_readme": [
"We explicitly require cweagans/composer-patches to allow 'composer update --prefer-lowest' to complete successfully."
],
"suggest": {
"monolog/monolog": "Log Poetry requests and responses via Monolog",
"ec-europa/oe-poetry-behat": "Test Poetry service integration with Behat"
},
"autoload": {
"psr-4": {
"EC\\Poetry\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"EC\\Poetry\\Tests\\": "./tests/src/",
"spec\\EC\\Poetry\\": "./spec/"
}
}
}