composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. "symfony/http-foundation": "^6.0|^7.0",
  25. "phpmailer/phpmailer": "^6.8",
  26. "guzzlehttp/guzzle": "^7.8.1",
  27. "voku/anti-xss": "^4.1",
  28. "nelexa/zip": "^4.0.0",
  29. "ext-calendar": "*",
  30. "ext-bcmath": "*",
  31. "ext-iconv": "*",
  32. "ext-json": "*",
  33. "ext-gd": "*",
  34. "phpoffice/phpspreadsheet": "^2.1"
  35. },
  36. "require-dev": {
  37. "symfony/var-dumper": "^5.4",
  38. "topthink/think-trace": "^1.0"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "app\\": "app",
  43. "modules\\": "modules"
  44. },
  45. "psr-0": {
  46. "": "extend/"
  47. }
  48. },
  49. "config": {
  50. "preferred-install": "dist"
  51. },
  52. "scripts": {
  53. "post-autoload-dump": [
  54. "@php think service:discover",
  55. "@php think vendor:publish"
  56. ]
  57. }
  58. }