composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. "league/flysystem": "^1.1.4",
  26. "league/flysystem-cached-adapter": "^1.0",
  27. "psr/log": "~1.0",
  28. "psr/container": "~1.0",
  29. "psr/simple-cache": "^1.0",
  30. "psr/http-message": "^1.0",
  31. "topthink/think-orm": "^2.0",
  32. "topthink/think-helper": "^3.1.1"
  33. },
  34. "require-dev": {
  35. "mikey179/vfsstream": "^1.6",
  36. "mockery/mockery": "^1.2",
  37. "phpunit/phpunit": "^7.0",
  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. }