composer.json 523 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "topthink/think-image",
  3. "description": "The ThinkPHP5 Image Package",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "yunwuxin",
  8. "email": "448901948@qq.com"
  9. }
  10. ],
  11. "require": {
  12. "ext-gd": "*"
  13. },
  14. "require-dev": {
  15. "topthink/framework": "^5.0",
  16. "phpunit/phpunit": "4.8.*"
  17. },
  18. "config": {
  19. "preferred-install": "dist"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "think\\": "src"
  24. }
  25. }
  26. }