composer.json 825B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "illuminate/pipeline",
  3. "description": "The Illuminate Pipeline package.",
  4. "license": "MIT",
  5. "homepage": "https://laravel.com",
  6. "support": {
  7. "issues": "https://github.com/laravel/framework/issues",
  8. "source": "https://github.com/laravel/framework"
  9. },
  10. "authors": [
  11. {
  12. "name": "Taylor Otwell",
  13. "email": "taylor@laravel.com"
  14. }
  15. ],
  16. "require": {
  17. "php": "^7.1.3",
  18. "illuminate/contracts": "5.6.*",
  19. "illuminate/support": "5.6.*"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Illuminate\\Pipeline\\": ""
  24. }
  25. },
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "5.6-dev"
  29. }
  30. },
  31. "config": {
  32. "sort-packages": true
  33. },
  34. "minimum-stability": "dev"
  35. }