appsero / laravel-datastore
A package for using google datastore as a database driver.
Installs: 570
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 0
Forks: 5
Open Issues: 3
Type:package
Requires
- php: ^7.2|^8.0
- ext-json: *
- google/cloud-datastore: 1.12
- illuminate/database: ^6|^7|^8|^9.0|^10.0|^11.0
- illuminate/http: ^6|^7|^8|^9.0|^10.0|^11.0
- illuminate/pagination: ^6|^7|^8|^9.0|^10.0|^11.0
- illuminate/support: ^6|^7|^8|^9.0|^10.0|^11.0
Requires (Dev)
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-10-15 17:37:52 UTC
README
Datastore Driver for Laravel
A package for using google datastore as a database driver.
By using this package, you can use query builder
and eloquent
to access data from datastore.
Installation
You can install the package via composer:
composer require appsero/laravel-datastore
If you are using Laravel Package Auto-Discovery, you don't need you to manually add the ServiceProvider.
Without auto-discovery:
If you don't use auto-discovery, add the below ServiceProvider to the $providers
array in config/app.php
file.
Appsero\LaravelDatastore\DatastoreServiceProvider::class,
Roadmap
- Data read using query builder (available).
- Data read using eloquent model (available).
- Data insert (available).
- Data update (Using query builder, model coming soon).
- Data delete (available).
- Cursor Paginate (soon).
- Relations (soon).
Usage
You need to add datastore
connection in config/database.php
file.
'connections' => [ ... 'datastore' => [ 'driver' => 'datastore', 'key_file_path' => env('GOOGLE_APPLICATION_CREDENTIALS', 'gcloud-credentials.json'), 'prefix' => env('DATASTORE_PREFIX', null), ], ... ],
Access using Eloquent Model
You need to extend Appsero\LaravelDatastore\Eloquent\Model
class instead of laravel's default eloquent model class.
Example-
<?php namespace App\Models; use Appsero\LaravelDatastore\Eloquent\Model; class Project extends Model { // Your works here }
Access using Query Builder
Example-
DB::connection('datastore') ->table('projects') ->where('project_id', '>', 5) ->skip(3) ->take(5) ->get();
It will return a collection.
Tested Builder Functions
- connection
- table
- from
- select (for projection query)
- kind (same as table)
- where (Available: = , > , < , >= , <= )
- limit
- take
- skip
- orderBy
- get
- simplePaginate
- paginate (works same as simplePaginate)
- first
- delete
- insert
- upsert
- find / lookup
Contribution Guide
This driver is still not stable. You can contribute by reporting bugs, fixing bugs, reviewing pull requests and more ways. Go to issues section, and you can start working on a issue immediately. If you want to add or fix something, open a pull request by following Laravel contribution guide.
License
The MIT License (MIT). Please see License File for more information.