composer.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "yiisoft/yii2-imagine",
  3. "description": "The Imagine integration for the Yii framework",
  4. "keywords": ["yii2", "imagine", "image", "helper"],
  5. "type": "yii2-extension",
  6. "license": "BSD-3-Clause",
  7. "support": {
  8. "issues": "https://github.com/yiisoft/yii2-imagine/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-imagine"
  13. },
  14. "authors": [
  15. {
  16. "name": "Antonio Ramirez",
  17. "email": "amigo.cobos@gmail.com"
  18. }
  19. ],
  20. "require": {
  21. "yiisoft/yii2": "~2.0.0",
  22. "imagine/imagine": "^1.0"
  23. },
  24. "require-dev": {
  25. "cweagans/composer-patches": "^1.7",
  26. "phpunit/phpunit": "4.8.34"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "yii\\imagine\\": "src"
  31. }
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0.x-dev"
  36. },
  37. "composer-exit-on-patch-failure": true,
  38. "patches": {
  39. "phpunit/phpunit-mock-objects": {
  40. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  41. },
  42. "phpunit/phpunit": {
  43. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  44. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  45. }
  46. }
  47. },
  48. "repositories": [
  49. {
  50. "type": "composer",
  51. "url": "https://asset-packagist.org"
  52. }
  53. ]
  54. }