composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "topthink/framework",
  3. "description": "The ThinkPHP Framework.",
  4. "keywords": [
  5. "framework",
  6. "thinkphp",
  7. "ORM"
  8. ],
  9. "homepage": "http://thinkphp.cn/",
  10. "license": "Apache-2.0",
  11. "authors": [
  12. {
  13. "name": "liu21st",
  14. "email": "liu21st@gmail.com"
  15. },
  16. {
  17. "name": "yunwuxin",
  18. "email": "448901948@qq.com"
  19. }
  20. ],
  21. "require": {
  22. "php": ">=8.0.0",
  23. "ext-json": "*",
  24. "ext-mbstring": "*",
  25. "ext-ctype": "*",
  26. "psr/log": "^1.0|^2.0|^3.0",
  27. "psr/simple-cache": "^1.0|^2.0|^3.0",
  28. "psr/http-message": "^1.0|^2.0",
  29. "topthink/think-orm": "^3.0|^4.0",
  30. "topthink/think-helper": "^3.1",
  31. "topthink/think-container": "^3.0",
  32. "topthink/think-validate": "^3.0"
  33. },
  34. "require-dev": {
  35. "friendsofphp/php-cs-fixer": "^3.92",
  36. "guzzlehttp/psr7": "^2.1.0",
  37. "mikey179/vfsstream": "^1.6",
  38. "mockery/mockery": "^1.2",
  39. "phpunit/phpunit": "^9.5"
  40. },
  41. "autoload": {
  42. "files": [],
  43. "psr-4": {
  44. "think\\": "src/think/"
  45. }
  46. },
  47. "autoload-dev": {
  48. "psr-4": {
  49. "think\\tests\\": "tests/"
  50. }
  51. },
  52. "minimum-stability": "dev",
  53. "prefer-stable": true,
  54. "config": {
  55. "sort-packages": true
  56. },
  57. "scripts": {
  58. "php-cs-fixer": "php-cs-fixer fix src/ --dry-run --diff"
  59. }
  60. }