composer.json 790 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name":"codeception/c3",
  3. "description":"CodeCoverage collector for Codeception",
  4. "keywords":["code coverage", "CodeCoverage"],
  5. "homepage":"http://codeception.com/",
  6. "type":"library",
  7. "license":"MIT",
  8. "authors":[
  9. {
  10. "name":"Michael Bodnarchuk",
  11. "email":"davert.php@resend.cc",
  12. "homepage":"http://codegyre.com"
  13. }
  14. ],
  15. "minimum-stability": "stable",
  16. "require": {
  17. "php": ">=5.4.0"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "Codeception\\c3\\": "."
  22. }
  23. },
  24. "scripts": {
  25. "post-install-cmd": [
  26. "Codeception\\c3\\Installer::copyC3ToRoot"
  27. ],
  28. "post-update-cmd": [
  29. "Codeception\\c3\\Installer::copyC3ToRoot"
  30. ]
  31. }
  32. }