Skip to content

Commit 903cc7b

Browse files
committed
Update README.md
1 parent f32dcc3 commit 903cc7b

File tree

4 files changed

+18
-17
lines changed

4 files changed

+18
-17
lines changed

.github/workflows/phpstan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ permissions:
1414
jobs:
1515
phpstan:
1616
name: PHPStan
17-
runs-on: Ubuntu-20.04
17+
runs-on: ubuntu-latest
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Setup PHP
2424
uses: shivammathur/setup-php@v2
2525
with:
26-
php-version: '8.1'
26+
php-version: '8.2'
2727
extensions: pdo
2828
ini-values: "memory_limit=-1"
2929
coverage: none

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515

1616
tests:
1717
name: Tests
18-
runs-on: Ubuntu-20.04
18+
runs-on: ubuntu-latest
1919

2020
strategy:
2121
matrix:
22-
php-versions: ['8.0', '8.1']
22+
php-versions: ['8.0', '8.1', '8.2']
2323
fail-fast: false
2424

2525
services:
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Setup PHP
3636
uses: shivammathur/setup-php@v2

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
If you want to become a maintainer of this package -- please, contact me via a@mochalygin.ru
2-
1+
# Doctrine DBAL ClickHouse Driver
32

4-
[![Build Status](https://travis-ci.org/FriendsOfDoctrine/dbal-clickhouse.svg?branch=master)](https://travis-ci.org/FriendsOfDoctrine/dbal-clickhouse)
5-
[![Total Downloads](https://poser.pugx.org/friendsofdoctrine/dbal-clickhouse/d/total.svg)](https://packagist.org/packages/friendsofdoctrine/dbal-clickhouse)
6-
[![Latest Stable Version](https://poser.pugx.org/friendsofdoctrine/dbal-clickhouse/v/stable.svg)](https://packagist.org/packages/friendsofdoctrine/dbal-clickhouse)
7-
[![License](https://poser.pugx.org/friendsofdoctrine/dbal-clickhouse/license.svg)](https://packagist.org/packages/friendsofdoctrine/dbal-clickhouse)
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/FriendsOfDoctrine/dbal-clickhouse.svg?style=flat-square)](https://packagist.org/packages/FriendsOfDoctrine/dbal-clickhouse)
4+
[![GitHub Tests Status](https://img.shields.io/github/actions/workflow/status/FriendsOfDoctrine/dbal-clickhouse/tests.yml?branch=master&label=tests&style=flat-square)](https://github.com/FriendsOfDoctrine/dbal-clickhouse/actions/workflows/tests.yml?query=branch%3Amaster)
5+
[![GitHub Code Style Status](https://img.shields.io/github/actions/workflow/status/FriendsOfDoctrine/dbal-clickhouse/phpstan.yml?branch=master&label=code%20style&style=flat-square)](https://github.com/FriendsOfDoctrine/dbal-clickhouse/actions/workflows/phpstan.yml?query=branch%3Amaster)
6+
[![Total Downloads](https://img.shields.io/packagist/dt/FriendsOfDoctrine/dbal-clickhouse.svg?style=flat-square)](https://packagist.org/packages/FriendsOfDoctrine/dbal-clickhouse)
7+
[![Licence](https://img.shields.io/packagist/l/FriendsOfDoctrine/dbal-clickhouse.svg?style=flat-square)](https://packagist.org/packages/FriendsOfDoctrine/dbal-clickhouse)
88

9-
# Doctrine DBAL ClickHouse Driver
9+
Doctrine DBAL driver for ClickHouse - an open-source column-oriented database management system by [Yandex](https://clickhouse.yandex/)
1010

11-
Doctrine DBAL driver for ClickHouse -- an open-source column-oriented database management system by Yandex (https://clickhouse.yandex/)
11+
**Driver is suitable for Symfony or any other framework using Doctrine.**
1212

13-
Driver is suitable for Symfony or any other framework using Doctrine.
13+
* [v2](https://github.com/FriendsOfDoctrine/dbal-clickhouse/releases?q=v2.) supports Doctrine DBAL 3+ and PHP 8.0+ [BETA release]
14+
* [v1](https://github.com/FriendsOfDoctrine/dbal-clickhouse/releases?q=v1.) supports Doctrine DBAL 2+ and PHP 7.1+
1415

1516
## Installation
1617

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"clickhouse",
99
"driver"
1010
],
11-
"homepage": "http://github.com/friendsofdoctrine/dbal-clickhouse",
11+
"homepage": "https://github.com/friendsofdoctrine/dbal-clickhouse",
1212
"license": "MIT",
1313
"authors": [
1414
{
@@ -20,7 +20,7 @@
2020
"email": "mitrofanovnk@yandex.ru"
2121
},
2222
{
23-
"name": "Sanikovich Aleksey",
23+
"name": "Sanikovich Aliaksei",
2424
"email": "asanikovich@gmail.com"
2525
}
2626
],

0 commit comments

Comments
 (0)