composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "tightenco/collect",
  3. "description": "Collect - Illuminate Collections as a separate package.",
  4. "keywords": ["laravel", "collection"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Taylor Otwell",
  9. "email": "taylorotwell@gmail.com"
  10. }
  11. ],
  12. "require": {
  13. "php": "^7.3|^8.0",
  14. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  15. },
  16. "require-dev": {
  17. "mockery/mockery": "^1.0",
  18. "phpunit/phpunit": "^8.3",
  19. "nesbot/carbon": "^2.23.0"
  20. },
  21. "autoload": {
  22. "files": [
  23. "src/Collect/Support/helpers.php",
  24. "src/Collect/Support/alias.php"
  25. ],
  26. "psr-4": {
  27. "Tightenco\\Collect\\": "src/Collect"
  28. }
  29. },
  30. "autoload-dev": {
  31. "files": [
  32. "tests/files/Support/Carbon.php",
  33. "tests/files/Support/HtmlString.php",
  34. "tests/files/Support/HigherOrderTapProxy.php",
  35. "tests/files/Support/Str.php",
  36. "tests/files/Support/Traits/Conditionable.php",
  37. "tests/files/Support/Stringable.php",
  38. "tests/files/Support/ItemNotFoundException.php",
  39. "tests/files/Support/MultipleItemsFoundException.php",
  40. "tests/Support/Concerns/CountsEnumerations.php"
  41. ]
  42. },
  43. "scripts": {
  44. "test": [
  45. "@composer install",
  46. "phpunit"
  47. ]
  48. },
  49. "minimum-stability": "dev",
  50. "prefer-stable": true
  51. }