composer.json 916 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "league/pipeline",
  3. "description": "A plug and play pipeline implementation.",
  4. "keywords": [
  5. "pipeline", "pattern", "sequential", "composition", "design pattern"
  6. ],
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Frank de Jonge",
  11. "email": "info@frenky.net",
  12. "role": "Author"
  13. },
  14. {
  15. "name": "Woody Gilk",
  16. "email": "woody.gilk@gmail.com",
  17. "role": "Maintainer"
  18. }
  19. ],
  20. "autoload": {
  21. "psr-4": {
  22. "League\\Pipeline\\": "src"
  23. }
  24. },
  25. "autoload-dev": {
  26. "psr-4": {
  27. "League\\Pipeline\\Stub\\": "stub"
  28. }
  29. },
  30. "require": {
  31. "php": ">=7.1"
  32. },
  33. "scripts": {
  34. "test": "phpspec run"
  35. },
  36. "require-dev": {
  37. "phpspec/phpspec": "^4.3",
  38. "leanphp/phpspec-code-coverage": "^4.2"
  39. }
  40. }