Package Data | |
---|---|
Maintainer Username: | antonkomarev |
Maintainer Contact: | anton@komarev.com (Anton Komarev) |
Package Create Date: | 2022-03-16 |
Package Last Update: | 2025-02-22 |
Home Page: | https://komarev.com/sources/laravel-clickhouse |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-04-27 15:00:04 |
Package Statistics | |
---|---|
Total Downloads: | 45,612 |
Monthly Downloads: | 3,837 |
Daily Downloads: | 53 |
Total Stars: | 108 |
Total Watchers: | 2 |
Total Forks: | 14 |
Total Open Issues: | 4 |
Laravel ClickHouse database integration. This package includes generation and execution of the ClickHouse database migrations in the Laravel application.
Pull in the package through Composer.
composer require cybercog/laravel-clickhouse
Add environment variables in .env
file.
CLICKHOUSE_HOST=localhost
CLICKHOUSE_PORT=8123
CLICKHOUSE_USER=default
CLICKHOUSE_PASSWORD=
CLICKHOUSE_DATABASE=default
Publish ClickHouse configuration.
php artisan vendor:publish --provider="Cog\Laravel\Clickhouse\ClickhouseServiceProvider" --tag=config
Edit config/clickhouse.php
file.
You can use a singleton object smi2/phpClickHouse to query ClickHouse:
app(\ClickHouseDB\Client::class)->select(
/* Query */
);
app(\ClickHouseDB\Client::class)->write(
/* Query */
);
php artisan make:clickhouse-migration create_example_table
New migration will be created in
database/clickhouse-migrations
directory.
php artisan clickhouse:migrate
To remove the interactive question during production migrations, you can use --force
option.
php artisan clickhouse:migrate --force
You can specify how many files need to be applied:
php artisan clickhouse:migrate --step=1
Value
0
is default — all files
Rolling back migrations is intentionally unavailable. Migrations should go only forward.
Detailed changes for each release are documented in the CHANGELOG.md.
Laravel ClickHouse
package is open-sourced software licensed under the MIT license by Anton Komarev.CyberCog is a Social Unity of enthusiasts. Research the best solutions in product & software development is our passion.