composer.json 760 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "fzaninotto/faker",
  3. "type": "library",
  4. "description": "Faker is a PHP library that generates fake data for you.",
  5. "keywords": ["faker", "fixtures", "data"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "François Zaninotto"
  10. }
  11. ],
  12. "require": {
  13. "php": "^5.3.3|^7.0"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "~4.0",
  17. "squizlabs/php_codesniffer": "~1.5",
  18. "ext-intl": "*"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "Faker\\": "src/Faker/"
  23. }
  24. },
  25. "autoload-dev": {
  26. "psr-4": {
  27. "Faker\\Test\\": "test/Faker/"
  28. }
  29. },
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "1.6.0"
  33. }
  34. }
  35. }