1. Go to this page and download the library: Download kevinsimard/laravel-deploy library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kevinsimard / laravel-deploy example snippets
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel {
/**
* @var array
*/
protected $commands = [
...
"Kevinsimard\Deploy\Command\Task\DeployTask",
];
...