-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
81 lines (81 loc) · 3.06 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
75
76
77
78
79
80
81
{
"name": "openeuropa/epoetry-client",
"type": "library",
"description": "PHP client for the ePoetry service.",
"license": "EUPL-1.2",
"require": {
"php": ">=8.1.21",
"ext-curl": "*",
"ext-dom": "*",
"ext-soap": "*",
"ext-xsl": "*",
"cweagans/composer-patches": "^1 || ^2",
"php-http/logger-plugin": "^1",
"php-http/message": "~1.13",
"phpro/soap-client": "~2.4",
"psr/http-client": "^1",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1",
"psr/http-factory-implementation": "*",
"psr/log": "^2 || ^3",
"symfony/http-client": "~5.4 || ~6",
"symfony/serializer": "~5.4 || ~6",
"symfony/validator": "~5.4 || ~6",
"veewee/xml": "^2.0"
},
"require-dev": {
"colinodell/psr-testlogger": "^1.1",
"doctrine/annotations": "^1.13",
"monolog/monolog": "^2.8",
"nyholm/psr7": "^1.4",
"openeuropa/code-review": "^2.0",
"openeuropa/task-runner": "^2",
"php-http/guzzle7-adapter": "~1",
"php-http/mock-client": "^1.5",
"phpdocumentor/reflection-docblock": "^5",
"phpunit/phpunit": "~9.6",
"react/http": "^1.8",
"symfony/dotenv": "~5.4 || ~6",
"symfony/expression-language": "~5.4 || ~6",
"symfony/http-kernel": "~5.4 || ~6",
"symfony/monolog-bridge": "~5.4 || ~6",
"symfony/property-access": "~5.4 || ~6",
"symfony/property-info": "~5.4 || ~6"
},
"suggest": {
"symfony/console": "The Symfony Console component eases the creation of command line interfaces. Require this in your project if you wish to use the ePoetry Console.",
"facile-it/php-openid-client": "Require this in your project if you use the OpenID Connect authentication plugin.",
"web-token/jwt-signature-algorithm-hmac": "Require this in your project if you use the OpenID Connect authentication plugin. It requres php >=8.1.",
"symfony/http-client": "Require this in your project if you use the client certificate authentication plugin."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true,
"cweagans/composer-patches": true,
"php-http/discovery": false
}
},
"autoload": {
"psr-4": {
"OpenEuropa\\EPoetry\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenEuropa\\EPoetry\\Tests\\": "./tests/"
}
},
"bin": ["bin/epoetry"],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"patches": {
"phpro/soap-client" : {
"https://github.com/phpro/soap-client/issues/446": "https://patch-diff.githubusercontent.com/raw/phpro/soap-client/pull/448.diff",
"https://github.com/phpro/soap-client/issues/444": "https://patch-diff.githubusercontent.com/raw/phpro/soap-client/pull/445.diff"
}
}
}
}