composer.json 1.0 KB

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