diff --git a/README.md b/README.md index 65fc8c8..650ad5e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

- + Yii

Yii Cache Library - DB Handler


@@ -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}}`). diff --git a/composer.json b/composer.json index 6b41b61..ad6bf26 100644 --- a/composer.json +++ b/composer.json @@ -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": "*",