-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.74 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
{
"name": "openeuropa/europa-search-client",
"description": "A PHP client library for communicating with the Europa Search service.",
"type": "library",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"ext-fileinfo": "*",
"ext-json": "*",
"league/container": "^3.3 || ^4.2",
"php-http/multipart-stream-builder": "^1.1",
"phpdocumentor/reflection-docblock": "^5.2",
"phpdocumentor/type-resolver": "^1.4",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "*",
"symfony/options-resolver": "^4.4.30 || ^5 || ^6.2",
"symfony/property-access": "^4.4 || ^6.2",
"symfony/property-info": "^4.4 || ^6.2",
"symfony/serializer": "^4.4 || ^6.2"
},
"require-dev": {
"guzzlehttp/guzzle": "^7",
"guzzlehttp/psr7": "^2",
"openeuropa/code-review": "^2.0.0-alpha6",
"phpunit/phpunit": "^9.4"
},
"suggest": {
"guzzlehttp/guzzle": "PSR-18 HTTP Client implementation",
"guzzlehttp/psr7": "PSR-17 HTTP Factories implementation"
},
"autoload": {
"psr-4": {
"OpenEuropa\\EuropaSearchClient\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenEuropa\\Tests\\EuropaSearchClient\\": "./tests/src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true,
"php-http/discovery": false
}
}
}