diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..c186927 --- /dev/null +++ b/composer.json @@ -0,0 +1,18 @@ +{ + "name": "react/http", + "description": "Library for building an evented http server.", + "keywords": ["http"], + "license": "MIT", + "require": { + "php": ">=5.4.0", + "guzzlehttp/psr7": "^1.0", + "react/socket": "^0.4", + "react/stream": "^0.4", + "evenement/evenement": "^2.0" + }, + "autoload": { + "psr-4": { + "React\\Http\\": "src" + } + } +} |