composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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.4 || ^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. "phpunit/phpunit": "^9.5.26",
  26. "symfony/phpunit-bridge": "^5.4.16"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Faker\\": "src/Faker/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Faker\\Test\\": "test/Faker/",
  36. "Faker\\Test\\Fixture\\": "test/Fixture/"
  37. }
  38. },
  39. "conflict": {
  40. "fzaninotto/faker": "*"
  41. },
  42. "suggest": {
  43. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  44. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  45. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  46. "ext-mbstring": "Required for multibyte Unicode string functionality.",
  47. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine"
  48. },
  49. "config": {
  50. "allow-plugins": {
  51. "bamarni/composer-bin-plugin": true,
  52. "composer/package-versions-deprecated": true
  53. },
  54. "sort-packages": true
  55. }
  56. }