composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.2|^8.0",
  14. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.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/Stringable.php"
  37. ]
  38. },
  39. "scripts": {
  40. "test": [
  41. "@composer install",
  42. "phpunit"
  43. ]
  44. },
  45. "minimum-stability": "dev",
  46. "prefer-stable": true
  47. }