PHP code example of wndrfl / pushbuggy

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

    

wndrfl / pushbuggy example snippets


// config/app.php
return [
  // All the app config...

    'providers' => [
      // All the other providers ...
      
      // Add this provider
      Wndrfl\PushBuggy\PushBuggyServiceProvider::class,
    ];
    
    // ...
];