説明なし

composer.json 861B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "fzaninotto/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": "^5.3.3 || ^7.0"
  18. },
  19. "require-dev": {
  20. "ext-intl": "*",
  21. "phpunit/phpunit": "^4.8.35 || ^5.7",
  22. "squizlabs/php_codesniffer": "^2.9.2"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Faker\\": "src/Faker/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "Faker\\Test\\": "test/Faker/"
  32. }
  33. },
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "1.9-dev"
  37. }
  38. },
  39. "config": {
  40. "sort-packages": true
  41. }
  42. }