composer.json 553 B

12345678910111213141516171819202122232425
  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": "~1.0",
  13. "topthink/think-helper": "~1.0",
  14. "phpunit/phpunit": "^4.8.26",
  15. "symfony/dom-crawler": "^2.8.8"
  16. },
  17. "autoload": {
  18. "psr-4": {
  19. "think\\testing\\": "src"
  20. },
  21. "files": [
  22. "src/config.php"
  23. ]
  24. }
  25. }