hyperf / database-pgsql-incubator
This package is abandoned and no longer maintained.
No replacement package was suggested.
A pgsql handler for hyperf/database.
v0.1.2
2022-06-21 08:39 UTC
Requires
- php: >=7.3
- hyperf/database: ^2.2|^3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- hyperf/di: ^2.2|^3.0
- hyperf/framework: ^2.2|^3.0
- hyperf/testing: ^2.2|^3.0
- hyperf/utils: ^2.2|^3.0
- mockery/mockery: ^1.0
- phpstan/phpstan: ^1.0
- phpunit/phpunit: >=7.0
- swoole/ide-helper: dev-master
This package is auto-updated.
Last update: 2023-03-21 10:09:16 UTC
README
安装
hyperf/database 组件版本必须大于等于 v2.2.26
composer require hyperf/database-pgsql-incubator
配置
修改 autoload/database.php
配置
<?php return [ 'pgsql' => [ 'driver' => 'pgsql', 'host' => '127.0.0.1', 'database' => 'hyperf', 'port' => 5435, 'username' => 'postgres', 'password' => "", 'charset' => env('DB_CHARSET', 'utf8'), 'collation' => env('DB_COLLATION', 'utf8_unicode_ci'), 'prefix' => '', 'schema' => 'public', 'pool' => [ 'min_connections' => 1, 'max_connections' => 10, 'connect_timeout' => 10.0, 'wait_timeout' => 3.0, 'heartbeat' => -1, 'max_idle_time' => (float) env('DB_MAX_IDLE_TIME', 60), ], 'commands' => [ 'gen:model' => [ 'path' => 'app/Model', 'force_casts' => false, 'inheritance' => 'Model', 'refresh_fillable' => true ], ], ], 'pgsql-swoole' => [ 'driver' => 'pgsql-swoole', 'host' => '127.0.0.1', 'database' => 'hyperf', 'port' => 5435, 'username' => 'postgres', 'password' => "", 'charset' => env('DB_CHARSET', 'utf8'), 'collation' => env('DB_COLLATION', 'utf8_unicode_ci'), 'prefix' => '', 'schema' => 'public', 'pool' => [ 'min_connections' => 1, 'max_connections' => 10, 'connect_timeout' => 10.0, 'wait_timeout' => 3.0, 'heartbeat' => -1, 'max_idle_time' => (float) env('DB_MAX_IDLE_TIME', 60), ], 'commands' => [ 'gen:model' => [ 'path' => 'app/Model', 'force_casts' => false, 'inheritance' => 'Model', 'refresh_fillable' => true ], ], ], ];
使用
目前增删改查orm,支持了pdo_pgsql和swoole/ext-postgresql双支持,由driver区分。迁移功能目前仅支持pdo,请注意配置和你的驱动是否安装