Skip to content

Commit

Permalink
feat: 添加pgsql拓展
Browse files Browse the repository at this point in the history
  • Loading branch information
devhaozi committed Dec 27, 2024
1 parent ca78656 commit 84b154f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions internal/apps/php/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ func (s *App) getExtensions() []Extension {
{
Name: "Redis",
Slug: "redis",
Description: "PhpRedis 是一个用 C 语言编写的 PHP 模块,用来连接并操作 Redis 数据库上的数据(需先安装 igbinary)",
Description: "PhpRedis 是一个用 C 语言编写的 PHP 模块,用来连接并操作 Redis 数据库上的数据(需先安装 igbinary 拓展)",
},
{
Name: "Memcached",
Expand All @@ -280,10 +280,15 @@ func (s *App) getExtensions() []Extension {
Slug: "exif",
Description: "通过 exif 扩展,您可以操作图像元数据",
},
{
Name: "pgsql",
Slug: "pgsql",
Description: "pgsql 是一个驱动程序,它启用从 PHP 到 PostgreSQL 数据库的访问(需先安装 PostgreSQL 应用)",
},
{
Name: "pdo_pgsql",
Slug: "pdo_pgsql",
Description: "pdo_pgsql 是一个驱动程序,它实现了 PHP 数据对象(PDO)接口以启用从 PHP 到 PostgreSQL 数据库的访问(需先安装 PostgreSQL)",
Description: "pdo_pgsql 是一个驱动程序,它实现了 PHP 数据对象(PDO)接口以启用从 PHP 到 PostgreSQL 数据库的访问(需先安装 PostgreSQL 应用)",
},
{
Name: "imap",
Expand Down

0 comments on commit 84b154f

Please sign in to comment.