Skip to content

Commit

Permalink
Adjust name, composer.json, and add changelog file
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark committed Apr 12, 2023
1 parent 9fbb4e4 commit b84cb6e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 18 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# MSSQL Server driver for Yii Database Change Log

## 1.0.0 under development

- Initial release.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@
<a href="https://www.microsoft.com/sql-server" target="_blank">
<img src="https://avatars0.githubusercontent.com/u/6154722" height="100px">
</a>
<h1 align="center">Yii Database MSSQL Extension</h1>
<h1 align="center">MSSQL Server driver for Yii Database</h1>
<br>
</p>

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)
Expand All @@ -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.

Expand Down
17 changes: 7 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand All @@ -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": {
Expand Down

0 comments on commit b84cb6e

Please sign in to comment.