composer.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "illuminate/auth",
  3. "description": "The Illuminate Auth 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/http": "5.6.*",
  20. "illuminate/queue": "5.6.*",
  21. "illuminate/support": "5.6.*"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Illuminate\\Auth\\": ""
  26. }
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "5.6-dev"
  31. }
  32. },
  33. "suggest": {
  34. "illuminate/console": "Required to use the auth:clear-resets command (5.6.*).",
  35. "illuminate/queue": "Required to fire login / logout events (5.6.*).",
  36. "illuminate/session": "Required to use the session based guard (5.6.*)."
  37. },
  38. "config": {
  39. "sort-packages": true
  40. },
  41. "minimum-stability": "dev"
  42. }