PHP code example of aura-is-here / fire-and-forget

1. Go to this page and download the library: Download aura-is-here/fire-and-forget 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/ */

    

aura-is-here / fire-and-forget example snippets


'HipsterJazzbo\FireAndForget\FireAndForgetServiceProvider',

'FireAndForget' => 'HipsterJazzbo\FireAndForget\Facades\FireAndForgetFacade'

// You can define a connection timeout, the default is 5
$connectionTimeout = 5;

$faf = new FireAndForget($connectionTimeout);
$faf->post($url, $params);

FireAndForget::post($url, $params);
bash
php artisan config:publish hipsterjazzbo/fire-and-forget