Files
faveo/vendor/sly/notification-pusher/np
Manish Verma 6742e13d81 Composer update
* updated Laravel to v5.6.38
* Added laravel tinker in dev dependencies
2018-09-19 15:44:43 +05:30

14 lines
271 B
PHP
Executable File

#!/usr/bin/env php
<?php
if (file_exists($a = __DIR__ . '/../../autoload.php')) {
require_once $a;
} else {
require_once __DIR__ . '/vendor/autoload.php';
}
use Sly\NotificationPusher\Console\Application;
$application = new Application();
$application->run();