nguyenngocchinh / cakephp4-driver-bigquery
BigQuery direver for CakePHP 4.4
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=7.4
- cakephp/cakephp: ^4.4
- google/cloud-bigquery: ^1.30
Requires (Dev)
- cakephp/cakephp-codesniffer: ^4.0
- josegonzalez/dotenv: ^3.2
- phpunit/phpunit: ^6.0
- squizlabs/php_codesniffer: ^3.5
This package is auto-updated.
Last update: 2025-03-05 11:48:43 UTC
README
An BigQuery for CakePHP 4.4
Installing via composer
Install composer and run:
composer require nguyenngocchinh/cakephp4-driver-bigquery
Defining a connection
Now, you need to set the connection in your config/app.php file:
'Datasources' => [ ... 'bigquery' => [ 'className' => 'Chinh\BigQuery\BigQueryConnection', 'driver' => 'Chinh\BigQuery\BigQueryDriver', 'projectId' => env('BIGQUERY_PROJECT_ID', 'project_id'), 'dataSet' => env('BIGQUERY_DATASET', 'dataset'), 'keyFilePath' => null, //The full path to your service account credentials .json file retrieved. ], ],
Models
...
Table
...
Entity
...
Controllers
...