composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. "repositories": {
  19. "packagist": {
  20. "type": "composer",
  21. "url": "https://packagist.phpcomposer.com"
  22. }
  23. },
  24. "require": {
  25. "php": ">=5.4.0",
  26. "topthink/framework": "^5.0",
  27. "topthink/think-image": "^1.0",
  28. "topthink/think-captcha": "^1.0",
  29. "topthink/think-mongo": "^1.0",
  30. "topthink/think-migration": "^1.0",
  31. "topthink/think-angular": "^1.0",
  32. "topthink/think-sae": "^1.0",
  33. "topthink/think-worker": "^1.0",
  34. "topthink/think-queue": "^1.0",
  35. "topthink/think-testing": "^1.0",
  36. "ext-json": "*",
  37. "guzzlehttp/guzzle": "^7.2"
  38. },
  39. "extra": {
  40. "think-path": "thinkphp"
  41. },
  42. "config": {
  43. "preferred-install": "dist"
  44. }
  45. }