composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "intervention/gif",
  3. "description": "Native PHP GIF Encoder/Decoder",
  4. "homepage": "https://github.com/intervention/gif",
  5. "keywords": [
  6. "image",
  7. "gd",
  8. "gif",
  9. "animation"
  10. ],
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "Oliver Vogel",
  15. "email": "oliver@intervention.io",
  16. "homepage": "https://intervention.io/"
  17. }
  18. ],
  19. "require": {
  20. "php": "^8.1"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
  24. "phpstan/phpstan": "^2.1",
  25. "squizlabs/php_codesniffer": "^3.8",
  26. "slevomat/coding-standard": "~8.0"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Intervention\\Gif\\": "src"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Intervention\\Gif\\Tests\\": "tests"
  36. }
  37. },
  38. "minimum-stability": "stable",
  39. "config": {
  40. "allow-plugins": {
  41. "dealerdirect/phpcodesniffer-composer-installer": true
  42. }
  43. }
  44. }