composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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": ">=7.2.5",
  23. "ext-json": "*",
  24. "ext-mbstring": "*",
  25. "psr/log": "~1.0",
  26. "psr/container": "~1.0",
  27. "psr/simple-cache": "^1.0",
  28. "psr/http-message": "^1.0",
  29. "topthink/think-orm": "^2.0|^3.0",
  30. "topthink/think-helper": "^3.1.1"
  31. },
  32. "require-dev": {
  33. "mikey179/vfsstream": "^1.6",
  34. "mockery/mockery": "^1.2",
  35. "phpunit/phpunit": "^7.0",
  36. "guzzlehttp/psr7": "^2.1.0"
  37. },
  38. "autoload": {
  39. "files": [],
  40. "psr-4": {
  41. "think\\": "src/think/"
  42. }
  43. },
  44. "autoload-dev": {
  45. "psr-4": {
  46. "think\\tests\\": "tests/"
  47. }
  48. },
  49. "minimum-stability": "dev",
  50. "prefer-stable": true,
  51. "config": {
  52. "sort-packages": true
  53. }
  54. }