15 lines
302 B
PHP
15 lines
302 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Webkul\Core\Events;
|
||
|
|
|
||
|
|
use Symfony\Component\Console\Output\ConsoleOutput;
|
||
|
|
|
||
|
|
class ComposerEvents
|
||
|
|
{
|
||
|
|
public static function postCreateProject()
|
||
|
|
{
|
||
|
|
$output = new ConsoleOutput();
|
||
|
|
|
||
|
|
$output->writeln(file_get_contents(__DIR__ . '/../Templates/on-boarding.php'));
|
||
|
|
}
|
||
|
|
}
|