composer.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. "name": "yunwuxin",
  19. "email": "448901948@qq.com"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=7.1.0",
  24. "topthink/framework": "^6.0.0",
  25. "topthink/think-orm": "^2.0",
  26. "easy-task/easy-task": "^2.4",
  27. "topthink/think-queue": "^3.0",
  28. "ext-curl": "*",
  29. "guzzlehttp/guzzle": "^6.3",
  30. "curl/curl": "^2.3",
  31. "topthink/think-multi-app": "^1.0",
  32. "yzh52521/schedule": "^1.0",
  33. "topthink/think-worker": "^3.0",
  34. "ext-json": "*",
  35. "jsonrpc/jsonrpc": "^1.0",
  36. "ext-redis": "^5.3@RC",
  37. "firebase/php-jwt": "^5.2",
  38. "topthink/think-view": "^1.0",
  39. "wenhainan/thinkphp6-auth": "^1.0",
  40. "topthink/think-migration": "^3.0"
  41. },
  42. "require-dev": {
  43. "symfony/var-dumper": "^4.2",
  44. "topthink/think-trace":"^1.0"
  45. },
  46. "autoload": {
  47. "psr-4": {
  48. "app\\": "app"
  49. },
  50. "psr-0": {
  51. "": "extend/"
  52. }
  53. },
  54. "config": {
  55. "preferred-install": "dist"
  56. },
  57. "scripts": {
  58. "post-autoload-dump": [
  59. "@php think service:discover",
  60. "@php think vendor:publish"
  61. ]
  62. },
  63. "repositories": {
  64. "packagist": {
  65. "type": "composer",
  66. "url": "https://mirrors.aliyun.com/composer/"
  67. }
  68. }
  69. }