composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "yiisoft/yii2-faker",
  3. "description": "Fixture generator. The Faker integration for the Yii framework.",
  4. "keywords": ["yii2", "faker", "fixture"],
  5. "type": "yii2-extension",
  6. "license": "BSD-3-Clause",
  7. "support": {
  8. "issues": "https://github.com/yiisoft/yii2-faker/issues",
  9. "forum": "http://www.yiiframework.com/forum/",
  10. "wiki": "http://www.yiiframework.com/wiki/",
  11. "irc": "irc://irc.freenode.net/yii",
  12. "source": "https://github.com/yiisoft/yii2-faker"
  13. },
  14. "authors": [
  15. {
  16. "name": "Mark Jebri",
  17. "email": "mark.github@yandex.ru"
  18. }
  19. ],
  20. "require": {
  21. "yiisoft/yii2": "~2.0.0",
  22. "fzaninotto/faker": "~1.4"
  23. },
  24. "autoload": {
  25. "psr-4": { "yii\\faker\\": "" }
  26. },
  27. "extra": {
  28. "branch-alias": {
  29. "dev-master": "2.0.x-dev"
  30. }
  31. },
  32. "repositories": [
  33. {
  34. "type": "composer",
  35. "url": "https://asset-packagist.org"
  36. }
  37. ]
  38. }