composer.json 582 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "topthink/think-testing",
  3. "license": "Apache-2.0",
  4. "type": "think-testing",
  5. "authors": [
  6. {
  7. "name": "yunwuxin",
  8. "email": "448901948@qq.com"
  9. }
  10. ],
  11. "require": {
  12. "topthink/think-installer": "~2.0",
  13. "topthink/framework": "5.1.*",
  14. "topthink/think-helper": "~1.0",
  15. "phpunit/phpunit": "^6.0",
  16. "symfony/dom-crawler": "^2.8.8"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "think\\testing\\": "src"
  21. },
  22. "files": [
  23. "src/config.php"
  24. ]
  25. }
  26. }