phapi/pipeline

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "phapi/pipeline",
  "description": "Phapi Pipeline is a middleware pipeline handling the middleware queue. Phapi Pipeline relies on PSR-7",
  "keywords": [
    "middleware", "pipeline", "phapi"
  ],
  "version": "1.0.0",
  "minimum-stability": "stable",
  "license": "MIT",
  "homepage": "http://phapi.github.io",
  "authors": [
    {
      "name": "Peter Ahinko",
      "email": "peter@ahinko.se",
      "role": "Developer"
    }
  ],
  "require": {
    "php": ">=5.6.0",
    "phapi/contract": "1.*",
    "psr/http-message": "1.*"
  },
  "require-dev": {
    "phpunit/phpunit": "4.*",
    "mockery/mockery": "0.9.*",
    "codeclimate/php-test-reporter": "dev-master"
  },
  "autoload": {
    "psr-4": {
      "Phapi\\Middleware\\": "src/Phapi/Middleware/"
    }
  },
    "autoload-dev": {
    "psr-4": {
      "Phapi\\Tests\\Middleware\\": "tests/Phapi/Middleware/",
      "Phapi\\Tests\\Fixtures\\": "tests/Phapi/Fixtures/"
    }
  }
}