composer.json 884 B

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. "license": "Apache-2.0",
  11. "authors": [
  12. {
  13. "name": "liu21st",
  14. "email": "liu21st@gmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.4.0",
  19. "ext-pdo": "*",
  20. "ext-curl": "*",
  21. "ext-json": "*",
  22. "ext-bcmath": "*",
  23. "ext-gd": "*",
  24. "ext-libxml": "*",
  25. "ext-simplexml": "*",
  26. "topthink/framework": "5.0.*",
  27. "qiniu/php-sdk": "^7.2",
  28. "aliyuncs/oss-sdk-php": "^2.3",
  29. "qcloud/cos-sdk-v5": "^1.2",
  30. "kosinix/grafika": "dev-master"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "app\\": "application"
  35. }
  36. },
  37. "extra": {
  38. "think-path": "thinkphp"
  39. },
  40. "config": {
  41. "preferred-install": "dist",
  42. "allow-plugins": {
  43. "topthink/think-installer": true
  44. }
  45. }
  46. }