You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.4 KiB

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