diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 00000000..f4594c10
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,5 @@
+# MSSQL Server driver for Yii Database Change Log
+
+## 1.0.0 under development
+
+- Initial release.
diff --git a/README.md b/README.md
index fe26ff4e..cc27369c 100644
--- a/README.md
+++ b/README.md
@@ -5,21 +5,21 @@
-
Yii Database MSSQL Extension
+ MSSQL Server driver for Yii Database
-Yii Database MSSQL Extension is a package for working with [MSSQL] databases in PHP. It is a part of the [Yii Framework], a high-performance, open-source PHP framework for web application development.
+MSSQL Server driver for [Yii Database](https://github.com/yiisoft/db) is a package for working with [MSSQL] databases in PHP.
-The package provides a set of classes for connecting to a [MSSQL] database, creating and executing commands, and working with data. It also includes a set of tools for building and executing queries, including support for parameter binding, as well as tools for working with transactions.
+The package provides a set of classes for connecting to a [MSSQL] database, creating and executing commands, and working with data.
+It also includes a set of tools for building and executing queries, including support for parameter binding, as well
+as tools for working with transactions.
-To use Yii Database MSSQL Extension, you will need to have the PHP [MSSQL extension] installed and enabled on your server. You will also need to have access to a SQL Server database and the necessary credentials to connect to it.
-
-It is used in [Yii Framework] but can be used separately.
+To use it, you will need to have the PHP [MSSQL extension] installed and enabled on your server. You will also need to
+have access to a SQL Server database and the necessary credentials to connect to it.
[MSSQL]: https://www.microsoft.com/sql-server
[MSSQL extension]: https://pecl.php.net/package/sqlsrv
-[Yii Framework]: https://www.yiiframework.com/
[![Latest Stable Version](https://poser.pugx.org/yiisoft/db-mssql/v/stable.png)](https://packagist.org/packages/yiisoft/db-mssql)
[![Total Downloads](https://poser.pugx.org/yiisoft/db-mssql/downloads.png)](https://packagist.org/packages/yiisoft/db-mssql)
@@ -43,7 +43,7 @@ composer require yiisoft/db-mssql
## Usage
-For config connection to MSSQL database check [Connecting MSSQL](https://github.com/yiisoft/db/blob/master/docs/en/connection/mssql.md).
+To configure connection to MSSQL database check [Connecting MSSQL](https://github.com/yiisoft/db/blob/master/docs/en/connection/mssql.md).
[Check the documentation docs](https://github.com/yiisoft/db/blob/master/docs/en/getting-started.md) to learn about usage.
diff --git a/composer.json b/composer.json
index ef4fdbf8..2d8a4c75 100644
--- a/composer.json
+++ b/composer.json
@@ -1,10 +1,14 @@
{
"name": "yiisoft/db-mssql",
- "description": "MSSQL Server extension for the Yii framework",
+ "description": "MSSQL Server driver for Yii Database",
"keywords": [
"yii",
"mssql",
- "sql server"
+ "sql server",
+ "database",
+ "sql",
+ "dbal",
+ "query-builder"
],
"type": "library",
"license": "BSD-3-Clause",
@@ -16,12 +20,10 @@
"chat": "https://t.me/yii3en",
"source": "https://github.com/yiisoft/db-mssql"
},
- "minimum-stability": "dev",
- "prefer-stable": true,
"require": {
"php": "^8.0",
"ext-pdo": "*",
- "yiisoft/db": "@dev"
+ "yiisoft/db": "^1.0"
},
"require-dev": {
"maglnet/composer-require-checker": "^4.2",
@@ -46,11 +48,6 @@
"Yiisoft\\Db\\Tests\\": "vendor/yiisoft/db/tests"
}
},
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
"config": {
"sort-packages": true,
"allow-plugins": {