composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.1.0",
  23. "ext-json": "*",
  24. "ext-mbstring": "*",
  25. "league/flysystem": "^1.0",
  26. "league/flysystem-cached-adapter": "^1.0",
  27. "opis/closure": "^3.1",
  28. "psr/log": "~1.0",
  29. "psr/container": "~1.0",
  30. "psr/simple-cache": "^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. },
  39. "autoload": {
  40. "files": [],
  41. "psr-4": {
  42. "think\\": "src/think/"
  43. }
  44. },
  45. "autoload-dev": {
  46. "psr-4": {
  47. "think\\tests\\": "src/tests/"
  48. }
  49. },
  50. "minimum-stability": "dev",
  51. "prefer-stable": true,
  52. "config": {
  53. "sort-packages": true
  54. }
  55. }