composer.json 860B

12345678910111213141516171819202122232425262728293031323334353637
  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": "^7.1.3",
  18. "illuminate/container": "5.6.*",
  19. "illuminate/contracts": "5.6.*",
  20. "illuminate/support": "5.6.*"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "Illuminate\\Events\\": ""
  25. }
  26. },
  27. "extra": {
  28. "branch-alias": {
  29. "dev-master": "5.6-dev"
  30. }
  31. },
  32. "config": {
  33. "sort-packages": true
  34. },
  35. "minimum-stability": "dev"
  36. }