8000 Add links to adapter libraries by seregazhuk · Pull Request #4 · driftphp/docs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add links to adapter libraries #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,8 @@ public function __construct(
)
```

Under the hood the bundle is a wrapper on top of [clue/reactphp-redis](https://github.com/clue/reactphp-redis) library. More detailed information on `Clue\React\Redis\Cliente` class you can find on the underlying library web-page.

## Mysql adapter

[![CircleCI](https://circleci.com/gh/driftphp/mysql-bundle.svg?style=svg)](https://circleci.com/gh/driftphp/mysql-bundle)
Expand Down Expand Up @@ -897,6 +899,8 @@ public function __construct(
)
```

Under the hood the bundle is a wrapper on top of [friends-of-reactphp/mysql](https://github.com/friends-of-reactphp/mysql) library. More detailed information on `ConnectionInterface` and `LazyConnection` classes you can find on the underlying library web-page.

## PostgreSQL adapter

[![CircleCI](https://circleci.com/gh/driftphp/postgresql-bundle.svg?style=svg)](https://circleci.com/gh/driftphp/postgresql-bundle)
Expand Down Expand Up @@ -961,7 +965,7 @@ use PgAsync\Client;
public function __construct(Client $client)
```

Under the hood the bundle is a wrapper on top of [voryx/PgAsync](https://github.com/voryx/PgAsync) library. The detailed information about class `Client` you can find on the underlying library web-page.
Under the hood the bundle is a wrapper on top of [voryx/PgAsync](https://github.com/voryx/PgAsync) library. The detailed information on class `Client` you can find on the underlying library web-page.

## Twig adapter

Expand Down
0