composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "intervention/image",
  3. "description": "PHP image manipulation",
  4. "homepage": "https://image.intervention.io/",
  5. "keywords": [
  6. "image",
  7. "gd",
  8. "imagick",
  9. "watermark",
  10. "thumbnail",
  11. "resize"
  12. ],
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "Oliver Vogel",
  17. "email": "oliver@intervention.io",
  18. "homepage": "https://intervention.io/"
  19. }
  20. ],
  21. "require": {
  22. "php": "^8.1",
  23. "ext-mbstring": "*",
  24. "intervention/gif": "^4.2"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
  28. "mockery/mockery": "^1.6",
  29. "phpstan/phpstan": "^2.1",
  30. "squizlabs/php_codesniffer": "^3.8",
  31. "slevomat/coding-standard": "~8.0"
  32. },
  33. "suggest": {
  34. "ext-exif": "Recommended to be able to read EXIF data properly."
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Intervention\\Image\\": "src"
  39. }
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "Intervention\\Image\\Tests\\": "tests"
  44. }
  45. },
  46. "config": {
  47. "allow-plugins": {
  48. "dealerdirect/phpcodesniffer-composer-installer": true
  49. }
  50. }
  51. }