-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
58 lines (58 loc) · 2.07 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
{
"name": "ec-europa/oe-poetry-client",
"description": "Client library for the European Commission Poetry Service",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "EUPL-1.2",
"require": {
"php": ">=8.0",
"ext-soap": "*",
"jeremeamia/superclosure": "~2.2",
"league/plates": "^3.3.0",
"pimple/pimple": "~3.2",
"psr/log": "~1 || ^3",
"symfony/dom-crawler": "^3.4 || ^4.4.12 || ^6.2",
"symfony/event-dispatcher": "^3.4 || ^4.4 || ^6.2",
"symfony/expression-language": "^3.4 || ^4.4 || ^6.2",
"symfony/validator": "^3.4 || ^4.4 || ^6.2",
"symfony/yaml": "^3.4 || ^4.4 || ^6.2"
},
"require-dev": {
"internations/http-mock": "dev-php74#cd52a62136c98b1b66eca6edbd564a3a91f7e79c",
"lstrojny/hmmmath": "^0.8",
"mockery/mockery": "^1.5",
"openeuropa/code-review": "^2.0",
"phpspec/phpspec": "^7.0",
"phpunit/phpunit": "^8.5.20"
},
"_readme": [
"We need to lock internations/http-mock on dev branch with a stable commit since the component doesn't support php7.4 yet.",
"We need to set symfony/dom-crawler as minimum 4.4.12 due to potential errors on higher php versions.",
"We need to add dependency of lstrojny/hmmmath to guarantee correct compatiblity with lower versions."
],
"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/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true,
"php-http/discovery": false
}
}
}