PHP code example of konstantinn / laravel-github-deploy

1. Go to this page and download the library: Download konstantinn/laravel-github-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/ */

    

konstantinn / laravel-github-deploy example snippets



class VerifyCsrfToken extends Middleware
{
    /**
     * Indicates whether the XSRF-TOKEN cookie should be set on the response.
     *
     * @var bool
     */
    protected $addHttpCookie = true;

    /**
     * The URIs that should be excluded from CSRF verification.
     *
     * @var array
     */
    protected $except = [
        '/deploy'
    ];
}

'commands' => [
    'git pull',
    'composer install --no-interaction --no-dev --prefer-dist',
    'php artisan migrate --force',
],
bach
php artisan vendor:publish --provider="Konstantinn\LaravelGitHubDeploy\DeployServiceProvider"