Installer.php 410 B

12345678910111213
  1. <?php
  2. namespace Codeception\c3;
  3. use \Composer\Script\Event;
  4. class Installer
  5. {
  6. public static function copyC3ToRoot(Event $event) {
  7. $io = $event->getIO();
  8. $io->write("Copying c3.php to the root of your project...");
  9. copy(__DIR__.DIRECTORY_SEPARATOR.'c3.php', getcwd());
  10. $io->write("Include c3.php into index.php in order to collect codecoverage from server scripts");
  11. }
  12. }