composer.json 785 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "fakerphp/faker",
  3. "type": "library",
  4. "description": "Faker is a PHP library that generates fake data for you.",
  5. "keywords": [
  6. "faker",
  7. "fixtures",
  8. "data"
  9. ],
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "François Zaninotto"
  14. }
  15. ],
  16. "require": {
  17. "php": "^7.1 || ^8.0"
  18. },
  19. "require-dev": {
  20. "ext-intl": "*",
  21. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Faker\\": "src/Faker/"
  26. }
  27. },
  28. "autoload-dev": {
  29. "psr-4": {
  30. "Faker\\Test\\": "test/Faker/"
  31. }
  32. },
  33. "conflict": {
  34. "fzaninotto/faker": "*"
  35. },
  36. "config": {
  37. "sort-packages": true
  38. }
  39. }