Skip to content

Commit 21ab94f

Browse files
authored
Merge 4e46b9b into f42b0bf
2 parents f42b0bf + 4e46b9b commit 21ab94f

File tree

4 files changed

+29
-21
lines changed

4 files changed

+29
-21
lines changed

LICENSE.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
Copyright © 2008 by Yii Software (https://www.yiiframework.com/)
1+
Copyright © 2008 by Yii Software (<https://www.yiiframework.com/>)
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without
55
modification, are permitted provided that the following conditions
66
are met:
77

8-
* Redistributions of source code must retain the above copyright
9-
notice, this list of conditions and the following disclaimer.
10-
* Redistributions in binary form must reproduce the above copyright
11-
notice, this list of conditions and the following disclaimer in
12-
the documentation and/or other materials provided with the
13-
distribution.
14-
* Neither the name of Yii Software nor the names of its
15-
contributors may be used to endorse or promote products derived
16-
from this software without specific prior written permission.
8+
* Redistributions of source code must retain the above copyright
9+
notice, this list of conditions and the following disclaimer.
10+
* Redistributions in binary form must reproduce the above copyright
11+
notice, this list of conditions and the following disclaimer in
12+
the documentation and/or other materials provided with the
13+
distribution.
14+
* Neither the name of Yii Software nor the names of its
15+
contributors may be used to endorse or promote products derived
16+
from this software without specific prior written permission.
1717

1818
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1919
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,27 @@ your Oracle database and perform various database operations as needed.
3737

3838
The package could be installed via composer:
3939

40-
```php
40+
```shell
4141
composer require yiisoft/db-oracle
4242
```
43+
# Documentation
4344

44-
## Usage
45+
## English
4546

46-
For config connection to Oracle database check [Connecting Oracle](https://github.com/yiisoft/db/blob/master/docs/en/connection/oracle.md).
47+
- For config connection to Oracle database check [Connecting Oracle](https://github.com/yiisoft/db/blob/master/docs/guide/en/connection/oracle.md).
48+
- [Check the documentation](https://github.com/yiisoft/db/blob/master/docs/guide/en/README.md) to learn about usage.
4749

48-
[Check the documentation docs](https://github.com/yiisoft/db/blob/master/docs/en/README.md) to learn about usage.
50+
## Português - Brasil
4951

50-
## Testing
52+
- Para configurar a conexão com o Oracle leia [Connecting Oracle](https://github.com/yiisoft/db/blob/master/docs/guide/pt-BR/connection/oracle.md).
53+
- [Confira a documentação](https://github.com/yiisoft/db/blob/master/docs/guide/pt-BR/README.md) para aprender como usar.
5154

52-
[Check the documentation](/docs/en/testing.md) to learn about testing.
55+
- [Internals](internals.md)
56+
57+
## Support
58+
59+
If you need help or have a question, the [Yii Forum](https://forum.yiiframework.com/c/yii-3-0/63) is a good place for that.
60+
You may also check out other [Yii Community Resources](https://www.yiiframework.com/community).
5361

5462
## Support the project
5563

docs/en/testing.md renamed to docs/internals.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Testing
1+
# Internals
22

33
## Github actions
44

@@ -32,7 +32,7 @@ The following steps are required to run the tests:
3232
vendor/bin/phpunit
3333
```
3434

35-
### Mutation testing
35+
## Mutation testing
3636

3737
The package tests are checked with [Infection](https://infection.github.io/) mutation framework with
3838
[Infection Static Analysis Plugin](https://github.com/Roave/infection-static-analysis-plugin). To run it:
@@ -51,8 +51,8 @@ The code is statically analyzed with [Psalm](https://psalm.dev/). To run static
5151

5252
## Rector
5353

54-
Use [Rector](https://github.com/rectorphp/rector) to make codebase follow some specific rules or
55-
use either newest or any specific version of PHP:
54+
Use [Rector](https://github.com/rectorphp/rector) to make codebase follow some specific rules or
55+
use either newest or any specific version of PHP:
5656

5757
```shell
5858
./vendor/bin/rector

src/Dsn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function __construct(
2929
/**
3030
* @return string The Data Source Name, or DSN, contains the information required to connect to the database.
3131
*
32-
* Please refer to the [PHP manual](http://php.net/manual/en/pdo.construct.php) on the format of the DSN string.
32+
* Please refer to the [PHP manual](https://php.net/manual/en/pdo.construct.php) on the format of the DSN string.
3333
*
3434
* The `driver` array key is used as the driver prefix of the DSN, all further key-value pairs are rendered as
3535
* `key=value` and concatenated by `;`. For example:

0 commit comments

Comments
 (0)