Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
luizcmarin committed May 11, 2024
1 parent ead8d35 commit bb98344
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 14 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<a href="https://github.com/yiisoft" target="_blank">
<img src="https://yiisoft.github.io/docs/images/yii_logo.svg" height="100px">
<img src="https://yiisoft.github.io/docs/images/yii_logo.svg" height="100px" alt="Yii">
</a>
<h1 align="center">Yii Cache Library - DB Handler</h1>
<br>
Expand Down Expand Up @@ -49,18 +49,18 @@ Package provides two way for preparing database:
1. Raw SQL. You can use it with the migration package used in your application.

- Ensure tables:
- [MSSQL](/sql/sqlsrv-up.sql),
- [MySQL / MariaDB](/sql/mysql-up.sql),
- [Oracle](/sql/oci-up.sql),
- [PostgreSQL](/sql/pgsql-up.sql)
- [SQLite](/sql/sqlite-up.sql)
- [MSSQL](sql/sqlsrv-up.sql),
- [MySQL / MariaDB](sql/mysql-up.sql),
- [Oracle](sql/oci-up.sql),
- [PostgreSQL](sql/pgsql-up.sql)
- [SQLite](sql/sqlite-up.sql)

- Ensure no tables:
- [MSSQL](/sql/sqlsrv-down.sql),
- [MySQL / MariaDB](/sql/mysql-down.sql),
- [Oracle](/sql/oci-down.sql),
- [PostgreSQL](/sql/pgsql-down.sql)
- [SQLite](/sql/sqlite-down.sql)
- [MSSQL](sql/sqlsrv-down.sql),
- [MySQL / MariaDB](sql/mysql-down.sql),
- [Oracle](sql/oci-down.sql),
- [PostgreSQL](sql/pgsql-down.sql)
- [SQLite](sql/sqlite-down.sql)

2. `DbSchemaManager` for `ensureTable()`, `ensureNoTable()` methods for cache table (by default `{{%yii_cache}}`).

Expand Down
16 changes: 13 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,23 @@
"homepage": "https://www.yiiframework.com/",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/cache-db/issues",
"issues": "https://github.com/yiisoft/cache-db/issues?state=open",
"source": "https://github.com/yiisoft/cache-db",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "ircs://irc.libera.chat:6697/yii",
"chat": "https://t.me/yii3en",
"source": "https://github.com/yiisoft/cache-db"
"chat": "https://t.me/yii3en"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/yiisoft"
},
{
"type": "github",
"url": "https://github.com/sponsors/yiisoft"
}
],
"require": {
"php": "^8.0",
"ext-pdo": "*",
Expand Down

0 comments on commit bb98344

Please sign in to comment.