composer.json 969 B

123456789101112131415161718192021222324252627282930313233343536373839
  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": "^8.2",
  18. "illuminate/contracts": "^12.0",
  19. "illuminate/macroable": "^12.0",
  20. "illuminate/support": "^12.0"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "Illuminate\\Pipeline\\": ""
  25. }
  26. },
  27. "suggest": {
  28. "illuminate/database": "Required to use database transactions (^12.0)."
  29. },
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "12.x-dev"
  33. }
  34. },
  35. "config": {
  36. "sort-packages": true
  37. },
  38. "minimum-stability": "dev"
  39. }