This repository has been archived by the owner on Feb 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.55 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
{
"name": "friendsofphp/well-known-implementations",
"description": "",
"type": "composer-plugin",
"license": "MIT",
"homepage": "https://github.com/FriendsOfPHP/well-known-implementations",
"authors": [
{
"name": "Nicolas Grekas",
"email": "[email protected]"
}
],
"provide": {
"php-http/async-client-implementation": "*",
"php-http/client-implementation": "*",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"psr/http-message-implementation": "*"
},
"require": {
"php": ">=7.2",
"composer-plugin-api": "^2.1",
"composer-runtime-api": "^2.1"
},
"require-dev": {
"composer/composer": "^2.1",
"nyholm/psr7": "^1",
"php-http/discovery": "^1",
"php-http/httplug": "^1|^2",
"psr/http-client": "^1",
"psr/http-factory": "^1",
"psr/http-message": "^1",
"symfony/phpunit-bridge": "^6"
},
"autoload": {
"psr-4": {
"FriendsOfPHP\\WellKnownImplementations\\": "src/"
}
},
"conflict": {
"guzzlehttp/guzzle": "<6",
"guzzlehttp/psr7": "<1.4",
"laminas/laminas-diactoros": "<2",
"php-http/curl-client": "<2",
"php-http/react-adapter": "<3",
"symfony/http-client": "<5.4"
},
"config": {
"sort-packages": true
},
"extra": {
"class": "FriendsOfPHP\\WellKnownImplementations\\Internal\\ComposerPlugin"
},
"minimum-stability": "dev"
}