Sin descripción
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.2KB

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