Skip to content

Commit d92972b

Browse files
committed
Adjust name, composer.json, and add changelog file
1 parent 94a97ed commit d92972b

File tree

3 files changed

+20
-16
lines changed

3 files changed

+20
-16
lines changed

CHANGELOG.md

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

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@
55
<a href="https://www.oracle.com/database/technologies/" target="_blank">
66
<img src="https://avatars3.githubusercontent.com/u/4430336" height="100px">
77
</a>
8-
<h1 align="center">Yii Database Oracle Extension</h1>
8+
<h1 align="center">Oracle driver for Yii Database</h1>
99
<br>
1010
</p>
1111

12-
Yii Database Oracle Extension is a database driver for [Oracle] databases that is part of the [Yii Framework]. The Yii framework is an open-source PHP framework for web application development.
12+
Oracle driver for [Yii Database](https://github.com/yiisoft/db) is a database driver for [Oracle] databases.
1313

14-
The package allows you to connect to [Oracle] databases from your Yii application and perform various database operations such as executing queries, creating and modifying database schema, and processing data. It supports a wide range of [Oracle] versions and provides a simple and efficient interface for working with [Oracle] databases in your Yii application.
14+
The package allows you to connect to [Oracle] databases from your application and perform various database operations
15+
such as executing queries, creating and modifying database schema, and processing data. It supports a wide range of
16+
[Oracle] versions and provides a simple and efficient interface for working with [Oracle] databases.
1517

16-
To use Yii Database Oracle Extension in your Yii application, you need to have the [Oracle] client library installed and configured on your server, and you need to specify the correct database connection parameters in your Yii application's configuration file. Once you have done this, you can use the Yii Database Oracle Extension driver to connect to your Oracle database and perform various database operations as needed.
17-
18-
It is used in [Yii Framework] but can be used separately.
18+
To use the package, you need to have the [Oracle] client library installed and configured on your server, and you need
19+
to specify the correct database connection parameters. Once you have done this, you can use the driver to connect to
20+
your Oracle database and perform various database operations as needed.
1921

2022
[Oracle]: https://www.oracle.com/database/technologies/
21-
[Yii Framework]: https://www.yiiframework.com/
2223

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

composer.json

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
22
"name": "yiisoft/db-oracle",
3-
"description": "Oracle extension for the Yii framework",
3+
"description": "Oracle driver for Yii Database",
44
"keywords": [
55
"yii",
6-
"oracle"
6+
"oracle",
7+
"database",
8+
"sql",
9+
"dbal",
10+
"query-builder"
711
],
812
"type": "library",
913
"license": "BSD-3-Clause",
@@ -15,11 +19,10 @@
1519
"chat": "https://t.me/yii3en",
1620
"source": "https://github.com/yiisoft/db-oracle"
1721
},
18-
"minimum-stability": "dev",
1922
"require": {
2023
"ext-pdo": "*",
2124
"php": "^8.0",
22-
"yiisoft/db": "@dev"
25+
"yiisoft/db": "^1.0"
2326
},
2427
"require-dev": {
2528
"maglnet/composer-require-checker": "^4.2",
@@ -44,11 +47,6 @@
4447
"Yiisoft\\Db\\Tests\\": "vendor/yiisoft/db/tests"
4548
}
4649
},
47-
"extra": {
48-
"branch-alias": {
49-
"dev-master": "1.0.x-dev"
50-
}
51-
},
5250
"config": {
5351
"sort-packages": true,
5452
"allow-plugins": {

0 commit comments

Comments
 (0)