From db793e41676778e66217bf666983daab798baa9e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 29 Jun 2016 12:20:24 +0200 Subject: php-zendframework-zend-stratigility: 1.2.1 (New Package) --- composer.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..4e70459 --- /dev/null +++ b/composer.json @@ -0,0 +1,45 @@ +{ + "name": "zendframework/zend-stratigility", + "description": "Middleware for PHP", + "type": "library", + "license": "BSD-3-Clause", + "keywords": [ + "http", + "psr-7", + "middleware" + ], + "homepage": "https://github.com/zendframework/zend-stratigility", + "support": { + "issues": "https://github.com/zendframework/zend-stratigility/issues", + "source": "https://github.com/zendframework/zend-stratigility" + }, + "extra": { + "branch-alias": { + "dev-master": "1.2-dev", + "dev-develop": "1.3-dev" + } + }, + "require": { + "php": "^5.4.8 || ^7.0", + "psr/http-message": "~1.0.0", + "zendframework/zend-escaper": "~2.3" + }, + "require-dev": { + "zendframework/zend-diactoros": "~1.0", + "phpunit/phpunit": "~4.7", + "squizlabs/php_codesniffer": "^2.3.1" + }, + "suggest": { + "psr/http-message-implementation": "Please install a psr/http-message-implementation to consume Stratigility; e.g., zendframework/zend-diactoros" + }, + "autoload": { + "psr-4": { + "Zend\\Stratigility\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "ZendTest\\Stratigility\\": "test/" + } + } +} -- cgit