composer.json 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.24",
  21. "topthink/think-mongo": "^1.0",
  22. "topthink/think-image": "^1.0",
  23. "topthink/think-testing": "^1.0",
  24. "topthink/think-sae": "^1.0",
  25. "topthink/think-queue": "^1.0",
  26. "topthink/think-migration": "^1.0",
  27. "topthink/think-helper": "^1.0",
  28. "phpoffice/phpexcel": "1.8",
  29. "phpoffice/phpspreadsheet": "1.8",
  30. "phpoffice/phpword": "^0.17.0",
  31. "ext-pdo": "*"
  32. },
  33. "extra": {
  34. "think-path": "thinkphp"
  35. },
  36. "config": {
  37. "preferred-install": "dist",
  38. "secure-http": false
  39. },
  40. "repositories": {
  41. "packagist": {
  42. "type": "composer",
  43. "url": "https://packagist.phpcomposer.com"
  44. }
  45. }
  46. }