composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "fakerphp/faker": "~1.9|~1.10"
  23. },
  24. "require-dev": {
  25. "cweagans/composer-patches": "^1.7",
  26. "phpunit/phpunit": "4.8.34"
  27. },
  28. "autoload": {
  29. "psr-4": {"yii\\faker\\": "src"}
  30. },
  31. "extra": {
  32. "branch-alias": {
  33. "dev-master": "2.0.x-dev"
  34. },
  35. "composer-exit-on-patch-failure": true,
  36. "patches": {
  37. "phpunit/phpunit-mock-objects": {
  38. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  39. },
  40. "phpunit/phpunit": {
  41. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  42. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  43. }
  44. }
  45. },
  46. "repositories": [
  47. {
  48. "type": "composer",
  49. "url": "https://asset-packagist.org"
  50. }
  51. ]
  52. }