composer.json 715 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "noa/middlewares",
  3. "type": "project",
  4. "require": {
  5. "guzzlehttp/guzzle": "^6.3",
  6. "http-interop/http-middleware": "^0.4",
  7. "middlewares/whoops": "0.4.1",
  8. "noa/middleware-handler": "1.0.0",
  9. "http-interop/response-sender": "1.0.0",
  10. "chadicus/slim-oauth2-middleware": "dev-master",
  11. "noa/router" : "1.1.1"
  12. },
  13. "require-dev": {
  14. "phpunit/phpunit": "4.8"
  15. },
  16. "license": "BSD",
  17. "authors": [
  18. {
  19. "name": "Yannick Guern",
  20. "email": "dev@guern.eu"
  21. }
  22. ],
  23. "minimum-stability": "dev",
  24. "autoload": {
  25. "psr-4" : {
  26. "Noa\\Example\\Middlewares\\" : "src/"
  27. }
  28. }
  29. }