Skip to content
This repository was archived by the owner on Feb 10, 2023. It is now read-only.

Commit d23c515

Browse files
Hello friendsofphp/well-known-implementations
0 parents  commit d23c515

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
composer.lock
2+
vendor/

composer.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "friendsofphp/well-known-implementations",
3+
"description": "",
4+
"type": "composer-plugin",
5+
"license": "MIT",
6+
"homepage": "https://github.com/FriendsOfPHP/well-known-implementations",
7+
"authors": [
8+
{
9+
"name": "Nicolas Grekas",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"provide": {
14+
"php-http/async-client-implementation": "*",
15+
"php-http/client-implementation": "*",
16+
"psr/http-client-implementation": "*",
17+
"psr/http-factory-implementation": "*",
18+
"psr/http-message-implementation": "*"
19+
},
20+
"require": {
21+
"php": ">=7.1",
22+
"composer-plugin-api": "^2.1",
23+
"composer-runtime-api": "^2.1"
24+
},
25+
"require-dev": {
26+
"php-http/httplug": "^1|^2",
27+
"psr/http-client": "^1",
28+
"psr/http-factory": "^1",
29+
"psr/http-message": "^1"
30+
},
31+
"autoload": {
32+
"psr-4": {
33+
"FriendsOfPHP\\WellKnownImplementations\\": "src/"
34+
}
35+
},
36+
"minimum-stability": "dev"
37+
}

0 commit comments

Comments
 (0)