composer.json 834 B

1234567891011121314151617181920212223242526272829303132333435
  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": ">=5.4.0",
  20. "topthink/think-installer": "~1.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "4.8.*",
  24. "johnkary/phpunit-speedtrap": "^1.0",
  25. "mikey179/vfsStream": "~1.6",
  26. "phploc/phploc": "2.*",
  27. "sebastian/phpcpd": "2.*",
  28. "phpdocumentor/reflection-docblock": "^2.0"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "think\\": "library/think"
  33. }
  34. }
  35. }