composer.json 768 B

1234567891011121314151617181920212223242526272829303132333435363738
  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": "*",
  21. "topthink/think-captcha": "1.0.*"
  22. },
  23. "extra": {
  24. "think-path": "thinkphp"
  25. },
  26. "minimum-stability": "dev",
  27. "config": {
  28. "preferred-install": "dist"
  29. },
  30. "repositories": {
  31. "packagist": {
  32. "type": "composer",
  33. "url": "https://packagist.phpcomposer.com"
  34. }
  35. }
  36. }