composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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": "^0.6 | ^0.7 | ^1.0"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "<7"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "yii\\imagine\\": "src"
  30. }
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "2.0.x-dev"
  35. }
  36. },
  37. "repositories": [
  38. {
  39. "type": "composer",
  40. "url": "https://asset-packagist.org"
  41. }
  42. ]
  43. }