composer.json 835 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "pixelcraft/pixelcraft",
  3. "description": "lightweight PHP library designed for easy image processing using the GD lib",
  4. "type": "library",
  5. "license": "MIT",
  6. "keywords": [
  7. "GD",
  8. "image",
  9. "thumbnail",
  10. "resize",
  11. "watermark",
  12. "png",
  13. "jpg",
  14. "webp",
  15. "image conversion",
  16. "images",
  17. "crop",
  18. "filter"
  19. ],
  20. "require": {
  21. "php": ">=5.3.28",
  22. "ext-gd": "*",
  23. "ext-mbstring": "*"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "pixelcraft\\": "src"
  28. },
  29. "files": [
  30. "src/api.pixelcraft.php"
  31. ]
  32. },
  33. "authors": [
  34. {
  35. "name": "Rostyslav Haitkulov",
  36. "email": "info@ubilling.net.ua",
  37. "homepage": "https://github.com/nightflyza"
  38. }
  39. ],
  40. "minimum-stability": "dev"
  41. }