composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "illuminate/events",
  3. "description": "The Illuminate Events 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/bus": "^12.0",
  19. "illuminate/collections": "^12.0",
  20. "illuminate/container": "^12.0",
  21. "illuminate/contracts": "^12.0",
  22. "illuminate/macroable": "^12.0",
  23. "illuminate/support": "^12.0"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Illuminate\\Events\\": ""
  28. },
  29. "files": [
  30. "functions.php"
  31. ]
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "12.x-dev"
  36. }
  37. },
  38. "config": {
  39. "sort-packages": true
  40. },
  41. "minimum-stability": "dev"
  42. }