No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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": "https://www.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.2.5",
  24. "topthink/framework": "^6.0.0",
  25. "topthink/think-orm": "^2.0"
  26. },
  27. "require-dev": {
  28. "symfony/var-dumper": "^4.2",
  29. "topthink/think-trace":"^1.0"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "app\\": "app"
  34. },
  35. "psr-0": {
  36. "": "extend/"
  37. }
  38. },
  39. "config": {
  40. "preferred-install": "dist"
  41. },
  42. "scripts": {
  43. "post-autoload-dump": [
  44. "@php think service:discover",
  45. "@php think vendor:publish"
  46. ]
  47. }
  48. }