PHP code example of spam-n-eggs / laravel-mysqlite

1. Go to this page and download the library: Download spam-n-eggs/laravel-mysqlite 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/ */

    

spam-n-eggs / laravel-mysqlite example snippets


    
    namespace App\Providers;

    use Mhorninger\SQLite\MySQLiteServiceProvider as ServiceProvider;

    class MySQLiteServiceProvider extends ServiceProvider
    {
        public function register()
        {
            if ($shouldRegister) {
                parent::register();
            }
        }
    }
    

    $this->app->register(MySQLiteServiceProvider::class);
    



class MySQLiteServiceProvider extends ServiceProvider
{
    ...

    public function boot()
    {
        $connection = $this->app->get('db')->connection();
        
        if ($connection->getDriverName() === 'sqlite') {
            $connection
                ->addRewriteRule('/CURDATE\(\)/', "date('now')")
                ->addFunction('CURDATE', fn() => CarbonImmutable::today()->toDateString(), 0);
        }
    }
}