composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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",
  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. "mikey179/vfsstream": "^1.6",
  36. "mockery/mockery": "^1.2",
  37. "phpunit/phpunit": "^9.5",
  38. "guzzlehttp/psr7": "^2.1.0"
  39. },
  40. "autoload": {
  41. "files": [],
  42. "psr-4": {
  43. "think\\": "src/think/"
  44. }
  45. },
  46. "autoload-dev": {
  47. "psr-4": {
  48. "think\\tests\\": "tests/"
  49. }
  50. },
  51. "minimum-stability": "dev",
  52. "prefer-stable": true,
  53. "config": {
  54. "sort-packages": true
  55. },
  56. "scripts": {
  57. "php-cs-fixer": "php-cs-fixer fix src/ --rules=@PER-CS2.0 --dry-run --diff"
  58. }
  59. }