composer.json 917 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "topthink/framework",
  3. "description": "the new thinkphp framework",
  4. "type": "think-framework",
  5. "keywords": [
  6. "framework",
  7. "thinkphp",
  8. "ORM"
  9. ],
  10. "homepage": "http://thinkphp.cn/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "liu21st",
  15. "email": "liu21st@gmail.com"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.1.0",
  20. "topthink/think-installer": "~1.0",
  21. "ext-fileinfo": "*",
  22. "ext-mbstring": "*",
  23. "ext-json": "*"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "4.8.*",
  27. "johnkary/phpunit-speedtrap": "^1.0",
  28. "mikey179/vfsstream": "~1.6",
  29. "phploc/phploc": "2.*",
  30. "sebastian/phpcpd": "2.*",
  31. "phpdocumentor/reflection-docblock": "^2.0"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "think\\": "library/think"
  36. }
  37. }
  38. }