Skip to content

Commit 889d1ae

Browse files
committed
Adjust name, composer.json, and add changelog file
1 parent 0d8308b commit 889d1ae

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# MySQL driver for Yii Database Change Log
2+
3+
## 1.0.0 under development
4+
5+
- Initial release.

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,22 @@
55
<a href="https://www.mysql.com/" target="_blank">
66
<img src="https://labs.mysql.com/common/logos/mysql-logo.svg" height="80px">
77
</a>
8-
<h1 align="center">Yii DataBase MySQL Extension</h1>
8+
<h1 align="center">MySQL driver for Yii Database</h1>
99
<br>
1010
</p>
1111

12-
Yii Database MySQL Extension is a database extension for the [Yii Framework] that allows developers to access and interact with [MySQL] and [MariaDb] databases. It provides a set of classes and methods for connecting to a [MySQL] and [MariaDb] database, executing SQL queries, and managing data within the database. The extension is designed to be easy to use and integrate into Yii-based applications, and supports a wide range of [MySQL], [MariaDb] features and functions. It also includes support for transactions, database schema management, and error handling.
12+
MySQL driver for [Yii Database](https://github.com/yiisoft/db) allows developers to access and interact with [MySQL]
13+
and [MariaDb] databases.
14+
It provides a set of classes and methods for connecting to a [MySQL] and [MariaDb] database,
15+
executing SQL queries, and managing data within the database.
16+
The package is designed to be easy to use and integrate,
17+
and supports a wide range of [MySQL], [MariaDb] features and functions.
18+
It also includes support for transactions, database schema management, and error handling.
1319

1420
It is used in [Yii Framework] but can be used separately.
1521

1622
[MariaDB]: https://mariadb.org/
1723
[MySQL]: https://www.mysql.com/
18-
[Yii Framework]: https://www.yiiframework.com/
1924

2025
[![Latest Stable Version](https://poser.pugx.org/yiisoft/db-mysql/v/stable.png)](https://packagist.org/packages/yiisoft/db-mysql)
2126
[![Total Downloads](https://poser.pugx.org/yiisoft/db-mysql/downloads.png)](https://packagist.org/packages/yiisoft/db-mysql)

composer.json

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
{
22
"name": "yiisoft/db-mysql",
33
"type": "library",
4-
"description": "Yii DataBase MySQL Extension",
4+
"description": "MySQL driver for Yii Database",
55
"keywords": [
66
"yii",
7-
"mysql"
7+
"mysql",
8+
"database",
9+
"sql",
10+
"dbal",
11+
"query-builder"
812
],
913
"homepage": "https://www.yiiframework.com/",
1014
"license": "BSD-3-Clause",
@@ -16,15 +20,13 @@
1620
"chat": "https://t.me/yii3en",
1721
"irc": "irc://irc.freenode.net/yii"
1822
},
19-
"minimum-stability": "dev",
20-
"prefer-stable": true,
2123
"require": {
2224
"php": "^8.0",
2325
"ext-ctype": "*",
2426
"ext-json": "*",
2527
"ext-pdo": "*",
2628
"psr/log": "^2.0|^3.0",
27-
"yiisoft/db": "@dev",
29+
"yiisoft/db": "^1.0",
2830
"yiisoft/json": "^1.0"
2931
},
3032
"require-dev": {
@@ -51,11 +53,6 @@
5153
"Yiisoft\\Db\\Tests\\": "vendor/yiisoft/db/tests"
5254
}
5355
},
54-
"extra": {
55-
"branch-alias": {
56-
"dev-master": "3.0.x-dev"
57-
}
58-
},
5956
"config": {
6057
"sort-packages": true,
6158
"allow-plugins": {

0 commit comments

Comments
 (0)