composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "neoxygen/neoclient": "^3.3",
  27. "firebase/php-jwt": "^5.5",
  28. "ext-json": "*",
  29. "phpmailer/phpmailer": "^6.6",
  30. "elasticsearch/elasticsearch": "*",
  31. "ext-curl": "*",
  32. "fukuball/jieba-php": "dev-master"
  33. },
  34. "require-dev": {
  35. "symfony/var-dumper": "^4.2",
  36. "topthink/think-trace":"^1.0"
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "app\\": "app"
  41. },
  42. "psr-0": {
  43. "": "extend/"
  44. }
  45. },
  46. "config": {
  47. "preferred-install": "dist"
  48. },
  49. "scripts": {
  50. "post-autoload-dump": [
  51. "@php think service:discover",
  52. "@php think vendor:publish"
  53. ]
  54. }
  55. }