composer.json 831 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "topthink/think",
  3. "description": "the new thinkphp framework",
  4. "type": "project",
  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.0.0",
  20. "topthink/framework": "5.1.*",
  21. "robmorgan/phinx": "^0.10.7",
  22. "ext-curl": "*",
  23. "ext-json": "*"
  24. }
  25. ,
  26. "require-dev": {
  27. "roave/security-advisories": "dev-master"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "app\\": "application"
  32. }
  33. },
  34. "extra": {
  35. "think-path": "thinkphp"
  36. },
  37. "config": {
  38. "preferred-install": "dist"
  39. }
  40. }