Skip to content

Commit 552f352

Browse files
committed
Adjust name, composer.json, and add changelog file
1 parent 8182083 commit 552f352

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

CHANGELOG.md

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

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,20 @@
55
<a href="https://www.sqlite.org/" target="_blank">
66
<img src="https://upload.wikimedia.org/wikipedia/commons/3/38/SQLite370.svg" height="80px">
77
</a>
8-
<h1 align="center">Yii DataBase SQLite Extension</h1>
8+
<h1 align="center">SQLite driver for Yii Database</h1>
99
<br>
1010
</p>
1111

12-
**Yii Database SQLite Extension** is a package for working with [SQLite]databases in PHP. It's a part of the [Yii Framework], which is a high-performance, component-based framework for developing modern web applications.
12+
SQLite driver for [Yii Database](https://github.com/yiisoft/db) is a package for working with [SQLite] databases in PHP.
1313

14-
The package provides a set of classes for interacting with [SQLite]databases in PHP. It includes a database connection class, a command builder class, and a set of classes for representing database tables and rows as PHP objects.
14+
The package provides a set of classes for interacting with [SQLite] databases in PHP. It includes a database connection class,
15+
a command builder class, and a set of classes for representing database tables and rows as PHP objects.
1516

16-
You can perform a variety of tasks with [SQLite] databases in PHP, such as connecting to a database, executing SQL queries, and working with database transactions. You can also use it to create and manipulate database tables and rows, and to perform advanced database operations such as joins and aggregates.
17-
18-
Overall, **Yii Database SQLite Extension** is a powerful tool for working with [SQLite] databases in PHP, and is well-suited for use in web applications.
19-
20-
It's used in [Yii Framework] but can be used separately.
17+
You can perform a variety of tasks with [SQLite] databases in PHP, such as connecting to a database, executing SQL queries,
18+
and working with database transactions. You can also use it to create and manipulate database tables and rows, and to
19+
perform advanced database operations such as joins and aggregates.
2120

2221
[SQLite]: https://www.sqlite.org/
23-
[Yii Framework]: https://www.yiiframework.com
2422

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

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-sqlite",
33
"type": "library",
4-
"description": "Yii DataBase SQLite Extension",
4+
"description": "SQLite driver for Yii Database",
55
"keywords": [
66
"yii",
7-
"sqlite"
7+
"sqlite",
8+
"database",
9+
"sql",
10+
"dbal",
11+
"query-builder"
812
],
913
"homepage": "https://www.yiiframework.com/",
1014
"license": "BSD-3-Clause",
@@ -16,13 +20,11 @@
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-mbstring": "*",
2426
"ext-pdo": "*",
25-
"yiisoft/db": "@dev"
27+
"yiisoft/db": "^1.0"
2628
},
2729
"require-dev": {
2830
"ext-json": "*",
@@ -48,11 +50,6 @@
4850
"Yiisoft\\Db\\Tests\\": "vendor/yiisoft/db/tests"
4951
}
5052
},
51-
"extra": {
52-
"branch-alias": {
53-
"dev-master": "3.0.x-dev"
54-
}
55-
},
5653
"config": {
5754
"allow-plugins": {
5855
"infection/extension-installer": true,

0 commit comments

Comments
 (0)