composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "league/flysystem": "^1.0",
  24. "league/flysystem-cached-adapter": "^1.0",
  25. "opis/closure": "^3.1",
  26. "topthink/think-container": "^2.0",
  27. "topthink/think-cache": "^2.0",
  28. "topthink/think-log": "^2.0",
  29. "topthink/think-orm": "^2.0"
  30. },
  31. "require-dev": {
  32. "mikey179/vfsstream": "^1.6",
  33. "mockery/mockery": "^1.2",
  34. "phpunit/phpunit": "^7.0"
  35. },
  36. "autoload": {
  37. "files": [],
  38. "psr-4": {
  39. "think\\": "src/think/"
  40. }
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "think\\tests\\": "src/tests/"
  45. }
  46. },
  47. "minimum-stability": "dev",
  48. "prefer-stable": true,
  49. "config": {
  50. "sort-packages": true
  51. }
  52. }