composer.json 902 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "topthink/think",
  3. "description": "the new thinkphp framework",
  4. "type": "project",
  5. "keywords": [
  6. "framework",
  7. "thinkphp",
  8. "ORM"
  9. ],
  10. "homepage": "http://thinkphp.cn/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "liu21st",
  15. "email": "liu21st@gmail.com"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.4.0",
  20. "topthink/framework": "5.0.*",
  21. "topthink/think-captcha": "1.*",
  22. "topthink/think-mongo": "1.*",
  23. "topthink/think-image": "^1.0",
  24. "topthink/think-queue": "1.*",
  25. "topthink/think-migration": "1.*",
  26. "topthink/think-oracle": "1.*"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "app\\": "application"
  31. }
  32. },
  33. "extra": {
  34. "think-path": "thinkphp"
  35. },
  36. "config": {
  37. "preferred-install": "dist"
  38. }
  39. }