composer.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. "psr/container": "^1.0 || ^2.0",
  19. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  20. },
  21. "require-dev": {
  22. "ext-intl": "*",
  23. "bamarni/composer-bin-plugin": "^1.4.1",
  24. "doctrine/persistence": "^1.3 || ^2.0",
  25. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Faker\\": "src/Faker/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Faker\\Test\\": "test/Faker/",
  35. "Faker\\Test\\Fixture\\": "test/Fixture/"
  36. }
  37. },
  38. "conflict": {
  39. "fzaninotto/faker": "*"
  40. },
  41. "suggest": {
  42. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  43. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  44. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  45. "ext-mbstring": "Required for multibyte Unicode string functionality.",
  46. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine"
  47. },
  48. "config": {
  49. "allow-plugins": {
  50. "bamarni/composer-bin-plugin": true,
  51. "composer/package-versions-deprecated": true
  52. },
  53. "sort-packages": true
  54. },
  55. "extra": {
  56. "branch-alias": {
  57. "dev-main": "v1.20-dev"
  58. }
  59. }
  60. }