mirror of
https://github.com/doctrine/dbal.git
synced 2026-03-23 22:32:15 +01:00
Address move away from master
This commit is contained in:
3
.github/ISSUE_TEMPLATE/BC_Break.md
vendored
3
.github/ISSUE_TEMPLATE/BC_Break.md
vendored
@@ -4,7 +4,8 @@ about: Have you encountered an issue during an upgrade? 💣
|
||||
---
|
||||
|
||||
<!--
|
||||
Before reporting a BC break, please consult the upgrading document to make sure it's not an expected change: https://github.com/doctrine/dbal/blob/master/UPGRADE.md
|
||||
Before reporting a BC break, please consult the upgrading document (UPGRADE.md)
|
||||
corresponding to the version you are using.
|
||||
-->
|
||||
|
||||
### BC Break Report
|
||||
|
||||
2
.github/workflows/coding-standards.yml
vendored
2
.github/workflows/coding-standards.yml
vendored
@@ -4,11 +4,9 @@ on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "*.x"
|
||||
- "master"
|
||||
push:
|
||||
branches:
|
||||
- "*.x"
|
||||
- "master"
|
||||
|
||||
jobs:
|
||||
coding-standards:
|
||||
|
||||
2
.github/workflows/continuous-integration.yml
vendored
2
.github/workflows/continuous-integration.yml
vendored
@@ -5,11 +5,9 @@ on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "*.x"
|
||||
- "master"
|
||||
push:
|
||||
branches:
|
||||
- "*.x"
|
||||
- "master"
|
||||
schedule:
|
||||
- cron: "42 3 * * *"
|
||||
|
||||
|
||||
2
.github/workflows/static-analysis.yml
vendored
2
.github/workflows/static-analysis.yml
vendored
@@ -5,11 +5,9 @@ on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "*.x"
|
||||
- "master"
|
||||
push:
|
||||
branches:
|
||||
- "*.x"
|
||||
- "master"
|
||||
|
||||
jobs:
|
||||
static-analysis-phpstan:
|
||||
|
||||
26
README.md
26
README.md
@@ -1,11 +1,11 @@
|
||||
# Doctrine DBAL
|
||||
|
||||
| [4.0-dev][Master] | [3.0][3.0] | [2.12][2.12] |
|
||||
| [4.0-dev][4.0] | [3.0][3.0] | [2.12][2.12] |
|
||||
|:----------------:|:----------:|:----------:|
|
||||
| [![Build status][Master image]][Master] | [![Build status][3.0 image]][3.0] | [![Build status][2.12 image]][2.12] |
|
||||
| [![GitHub Actions][GA master image]][GA master] | [![GitHub Actions][GA 3.0 image]][GA 3.0] | [![GitHub Actions][GA 2.12 image]][GA 2.12] |
|
||||
| [![AppVeyor][AppVeyor master image]][AppVeyor master] | [![AppVeyor][AppVeyor 3.0 image]][AppVeyor 3.0] | [![AppVeyor][AppVeyor 2.12 image]][AppVeyor 2.12] |
|
||||
| [![Code Coverage][Coverage image]][CodeCov Master] | [![Code Coverage][Coverage 3.0 image]][CodeCov 3.0] | [![Code Coverage][Coverage 2.12 image]][CodeCov 2.12] |
|
||||
| [![Build status][4.0 image]][4.0] | [![Build status][3.0 image]][3.0] | [![Build status][2.12 image]][2.12] |
|
||||
| [![GitHub Actions][GA 4.0 image]][GA 4.0] | [![GitHub Actions][GA 3.0 image]][GA 3.0] | [![GitHub Actions][GA 2.12 image]][GA 2.12] |
|
||||
| [![AppVeyor][AppVeyor 4.0 image]][AppVeyor 4.0] | [![AppVeyor][AppVeyor 3.0 image]][AppVeyor 3.0] | [![AppVeyor][AppVeyor 2.12 image]][AppVeyor 2.12] |
|
||||
| [![Code Coverage][Coverage image]][CodeCov 4.0] | [![Code Coverage][Coverage 3.0 image]][CodeCov 3.0] | [![Code Coverage][Coverage 2.12 image]][CodeCov 2.12] |
|
||||
|
||||
Powerful database abstraction layer with many features for database schema introspection, schema management and PDO abstraction.
|
||||
|
||||
@@ -15,14 +15,14 @@ Powerful database abstraction layer with many features for database schema intro
|
||||
* [Documentation](http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/)
|
||||
* [Issue Tracker](https://github.com/doctrine/dbal/issues)
|
||||
|
||||
[Master image]: https://img.shields.io/travis/doctrine/dbal/master.svg?style=flat-square
|
||||
[Coverage image]: https://codecov.io/gh/doctrine/dbal/branch/master/graph/badge.svg
|
||||
[Master]: https://travis-ci.org/doctrine/dbal
|
||||
[CodeCov Master]: https://codecov.io/gh/doctrine/dbal/branch/master
|
||||
[AppVeyor master]: https://ci.appveyor.com/project/doctrine/dbal/branch/master
|
||||
[AppVeyor master image]: https://ci.appveyor.com/api/projects/status/i88kitq8qpbm0vie/branch/master?svg=true
|
||||
[GA master]: https://github.com/doctrine/dbal/actions?query=workflow%3A%22Continuous+Integration%22+branch%3Amaster
|
||||
[GA master image]: https://github.com/doctrine/dbal/workflows/Continuous%20Integration/badge.svg
|
||||
[4.0 image]: https://img.shields.io/travis/doctrine/dbal/4.0.x.svg?style=flat-square
|
||||
[Coverage image]: https://codecov.io/gh/doctrine/dbal/branch/4.0.x/graph/badge.svg
|
||||
[4.0]: https://travis-ci.org/doctrine/dbal
|
||||
[CodeCov 4.0]: https://codecov.io/gh/doctrine/dbal/branch/4.0.x
|
||||
[AppVeyor 4.0]: https://ci.appveyor.com/project/doctrine/dbal/branch/4.0.x
|
||||
[AppVeyor 4.0 image]: https://ci.appveyor.com/api/projects/status/i88kitq8qpbm0vie/branch/4.0.x?svg=true
|
||||
[GA 4.0]: https://github.com/doctrine/dbal/actions?query=workflow%3A%22Continuous+Integration%22+branch%3A4.0.x
|
||||
[GA 4.0 image]: https://github.com/doctrine/dbal/workflows/Continuous%20Integration/badge.svg
|
||||
|
||||
[3.0 image]: https://img.shields.io/travis/doctrine/dbal/3.0.x.svg?style=flat-square
|
||||
[Coverage 3.0 image]: https://codecov.io/gh/doctrine/dbal/branch/3.0.x/graph/badge.svg
|
||||
|
||||
@@ -10,5 +10,5 @@ we cannot protect you from SQL injection.
|
||||
Please read the documentation chapter on Security in Doctrine DBAL to
|
||||
understand the assumptions we make.
|
||||
|
||||
- [Latest security.rst page on Github](https://github.com/doctrine/dbal/blob/master/docs/en/reference/security.rst)
|
||||
- [Latest security.rst page on Github](https://github.com/doctrine/dbal/blob/4.0.x/docs/en/reference/security.rst)
|
||||
- [Security Page in rendered documentation](http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/security.html)
|
||||
|
||||
@@ -61,10 +61,5 @@
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" }
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "4.0.x-dev"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user