composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "imagine/imagine",
  3. "description": "Image processing for PHP 5.3",
  4. "keywords": [
  5. "image manipulation",
  6. "image processing",
  7. "drawing",
  8. "graphics"
  9. ],
  10. "homepage": "http://imagine.readthedocs.org/",
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "Bulat Shakirzyanov",
  15. "email": "mallluhuct@gmail.com",
  16. "homepage": "http://avalanche123.com"
  17. }
  18. ],
  19. "require": {
  20. "php": ">=5.3.2"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4",
  24. "friendsofphp/php-cs-fixer": "2.2.*"
  25. },
  26. "suggest": {
  27. "ext-gd": "to use the GD implementation",
  28. "ext-imagick": "to use the Imagick implementation",
  29. "ext-gmagick": "to use the Gmagick implementation"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Imagine\\": "src/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "Imagine\\Test\\": "tests/tests/"
  39. }
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-develop": "0.7-dev"
  44. }
  45. },
  46. "archive": {
  47. "exclude": [
  48. "/.*",
  49. "/tests",
  50. "/vendor",
  51. "/bin",
  52. "docs/_build",
  53. "Imagine-*.tgz",
  54. "imagine-*.phar",
  55. "composer.phar"
  56. ]
  57. },
  58. "scripts": {
  59. "test": "phpunit --verbose",
  60. "codestyle": "php-cs-fixer fix --path-mode=intersection --config=.php_cs.dist"
  61. }
  62. }