summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json45
1 files changed, 45 insertions, 0 deletions
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/"
+ }
+ }
+}