summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json56
1 files changed, 43 insertions, 13 deletions
diff --git a/composer.json b/composer.json
index c3d46a9..d92ac82 100644
--- a/composer.json
+++ b/composer.json
@@ -1,24 +1,54 @@
{
"name": "react/http",
- "description": "Event-driven, streaming plaintext HTTP and secure HTTPS server for ReactPHP",
- "keywords": ["event-driven", "streaming", "HTTP", "HTTPS", "server", "ReactPHP"],
+ "description": "Event-driven, streaming HTTP client and server implementation for ReactPHP",
+ "keywords": ["HTTP client", "HTTP server", "HTTP", "HTTPS", "event-driven", "streaming", "client", "server", "PSR-7", "async", "ReactPHP"],
"license": "MIT",
+ "authors": [
+ {
+ "name": "Christian Lück",
+ "homepage": "https://clue.engineering/",
+ "email": "christian@clue.engineering"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "homepage": "https://wyrihaximus.net/",
+ "email": "reactphp@ceesjankiewiet.nl"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "homepage": "https://sorgalla.com/",
+ "email": "jsorgalla@gmail.com"
+ },
+ {
+ "name": "Chris Boden",
+ "homepage": "https://cboden.dev/",
+ "email": "cboden@gmail.com"
+ }
+ ],
"require": {
"php": ">=5.3.0",
- "ringcentral/psr7": "^1.2",
- "react/socket": "^1.0 || ^0.8.3",
- "react/stream": "^1.0 || ^0.7.1",
- "react/promise": "^2.3 || ^1.2.1",
"evenement/evenement": "^3.0 || ^2.0 || ^1.0",
- "react/promise-stream": "^1.1"
+ "fig/http-message-util": "^1.1",
+ "psr/http-message": "^1.0",
+ "react/event-loop": "^1.2",
+ "react/promise": "^3 || ^2.3 || ^1.2.1",
+ "react/promise-stream": "^1.4",
+ "react/socket": "^1.12",
+ "react/stream": "^1.2",
+ "ringcentral/psr7": "^1.2"
+ },
+ "require-dev": {
+ "clue/http-proxy-react": "^1.8",
+ "clue/reactphp-ssh-proxy": "^1.4",
+ "clue/socks-react": "^1.4",
+ "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
+ "react/async": "^4 || ^3 || ^2",
+ "react/promise-timer": "^1.9"
},
"autoload": {
- "psr-4": {
- "React\\Http\\": "src"
- }
+ "psr-4": { "React\\Http\\": "src" }
},
- "require-dev": {
- "clue/block-react": "^1.1",
- "phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35"
+ "autoload-dev": {
+ "psr-4": { "React\\Tests\\Http\\": "tests" }
}
}