summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json39
1 files changed, 39 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..76513b1
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,39 @@
+{
+ "name": "symfony/psr-http-message-bridge",
+ "type": "symfony-bridge",
+ "description": "PSR HTTP message bridge",
+ "keywords": ["http", "psr-7", "http-message"],
+ "homepage": "http://symfony.com",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "http://symfony.com/contributors"
+ }
+ ],
+ "require": {
+ "php": ">=5.3.3",
+ "psr/http-message": "~1.0",
+ "symfony/http-foundation": "~2.3|~3.0|~4.0"
+ },
+ "require-dev": {
+ "symfony/phpunit-bridge": "~3.2|4.0"
+ },
+ "suggest": {
+ "psr/http-message-implementation": "To use the HttpFoundation factory",
+ "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
+ },
+ "autoload": {
+ "psr-4": { "Symfony\\Bridge\\PsrHttpMessage\\": "" }
+ },
+ "minimum-stability": "dev",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ }
+}