composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "wonderful-code/buildadmin",
  3. "description": "Build your admin framework",
  4. "type": "project",
  5. "keywords": [
  6. "buildadmin",
  7. "thinkphp"
  8. ],
  9. "homepage": "https://uni.buildadmin.com",
  10. "license": "Apache-2.0",
  11. "authors": [
  12. {
  13. "name": "妙码生花",
  14. "email": "hi@buildadmin.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=8.0.2",
  19. "topthink/framework": "^8.0.0",
  20. "topthink/think-orm": "^3.0",
  21. "topthink/think-multi-app": "^1.0",
  22. "topthink/think-throttle": "v2.0.0",
  23. "topthink/think-migration": "3.1.1",
  24. "phpmailer/phpmailer": "^6.8",
  25. "guzzlehttp/guzzle": "^7.8.1",
  26. "voku/anti-xss": "^4.1",
  27. "nelexa/zip": "^4.0.0",
  28. "ext-calendar": "*",
  29. "ext-bcmath": "*",
  30. "ext-iconv": "*",
  31. "ext-json": "*",
  32. "ext-gd": "*",
  33. "phpoffice/phpspreadsheet": "^1.29.0",
  34. "w7corp/easywechat": "^6.13",
  35. "yurunsoft/yurun-oauth-login": "~3.0",
  36. "endroid/qrcode": "4.0.3",
  37. "endroid/qr-code": "^4.8"
  38. },
  39. "require-dev": {
  40. "symfony/var-dumper": "^5.4",
  41. "topthink/think-trace": "^1.0"
  42. },
  43. "autoload": {
  44. "psr-4": {
  45. "app\\": "app",
  46. "modules\\": "modules"
  47. },
  48. "psr-0": {
  49. "": "extend/"
  50. }
  51. },
  52. "config": {
  53. "preferred-install": "dist",
  54. "allow-plugins": {
  55. "easywechat-composer/easywechat-composer": true
  56. }
  57. },
  58. "scripts": {
  59. "post-autoload-dump": [
  60. "@php think service:discover",
  61. "@php think vendor:publish"
  62. ]
  63. }
  64. }