composer.json 589 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "yguern/middleware",
  3. "description": "Just a bunch of test on middlewares to explain their running",
  4. "type": "project",
  5. "require": {
  6. "guzzlehttp/psr7": "1.4.2",
  7. "http-interop/http-middleware": "0.5.0"
  8. },
  9. "require-dev": {
  10. "phpunit/phpunit": "6.4.1"
  11. },
  12. "license": "BSD",
  13. "authors": [
  14. {
  15. "name": "Yannick Guern (RMN)",
  16. "email": "yguern@rmn.com"
  17. }
  18. ],
  19. "minimum-stability": "dev",
  20. "autoload" : {
  21. "psr-4" : {
  22. "Retailmenot\\Lab\\": "src/"
  23. }
  24. }
  25. }