PHP code example of pmatseykanets / file-queue-failer
1. Go to this page and download the library: Download pmatseykanets/file-queue-failer 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/ */
pmatseykanets / file-queue-failer example snippets
// config/app.php
'providers' => [
/*
* Package Service Providers...
*/
Pvm\FileQueueFailer\Queue\QueueServiceProvider::class,
],
// config/app.php
'providers' => [
// Illuminate\Queue\QueueServiceProvider::class,
Pvm\FileQueueFailer\Queue\QueueServiceProvider::class,
];
// config\queue.php
'failed' => [
'path' => '/some/other/path',
],