composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "sybio/image-workshop",
  3. "type": "library",
  4. "description": "Powerful PHP class using GD library to work easily with images including layer notion (like Photoshop or GIMP)",
  5. "keywords": ["image", "thumbnail", "watermark", "resize", "crop", "rotate", "library", "GD", "class"],
  6. "homepage": "http://phpimageworkshop.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Clément Guillemain",
  11. "homepage": "http://clementguillemain.fr",
  12. "role": "Developer / Freelancer"
  13. },
  14. {
  15. "name": "ImageWorkshop Community",
  16. "homepage": "https://github.com/Sybio/ImageWorkshop/graphs/contributors"
  17. }
  18. ],
  19. "require": {
  20. "php": ">=7.2.0",
  21. "ext-fileinfo": "*",
  22. "ext-gd": "*"
  23. },
  24. "require-dev": {
  25. "friendsofphp/php-cs-fixer": "^v2.17.1",
  26. "phpunit/phpunit": "^8.5.13",
  27. "phpstan/phpstan": "^0.12.59"
  28. },
  29. "suggest": {
  30. "ext-exif": "Allows to read and keep images EXIF data"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "PHPImageWorkshop\\": "src/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "PHPImageWorkshop\\Tests\\": "tests/"
  40. }
  41. }
  42. }