composer.json 985 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "illuminate/collections",
  3. "description": "The Illuminate Collections 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.3|^8.0",
  18. "illuminate/contracts": "^8.0",
  19. "illuminate/macroable": "^8.0"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Illuminate\\Support\\": ""
  24. },
  25. "files": [
  26. "helpers.php"
  27. ]
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "8.x-dev"
  32. }
  33. },
  34. "suggest": {
  35. "symfony/var-dumper": "Required to use the dump method (^5.4)."
  36. },
  37. "config": {
  38. "sort-packages": true
  39. },
  40. "minimum-stability": "dev"
  41. }