From 903cc7b3f3f17eff9180c66716a8cabbf1a0e680 Mon Sep 17 00:00:00 2001 From: Aliaksei Sanikovich Date: Wed, 13 Sep 2023 20:59:00 +0200 Subject: [PATCH] Update README.md --- .github/workflows/phpstan.yml | 6 +++--- .github/workflows/tests.yml | 6 +++--- README.md | 19 ++++++++++--------- composer.json | 4 ++-- 4 files changed, 18 insertions(+), 17 deletions(-) diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 38aaf26..757c7ce 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -14,16 +14,16 @@ permissions: jobs: phpstan: name: PHPStan - runs-on: Ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.2' extensions: pdo ini-values: "memory_limit=-1" coverage: none diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 10801fc..cb02c9e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,11 +15,11 @@ jobs: tests: name: Tests - runs-on: Ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: - php-versions: ['8.0', '8.1'] + php-versions: ['8.0', '8.1', '8.2'] fail-fast: false services: @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/README.md b/README.md index 57d00b4..8743929 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,17 @@ -If you want to become a maintainer of this package -- please, contact me via a@mochalygin.ru - +# Doctrine DBAL ClickHouse Driver -[![Build Status](https://travis-ci.org/FriendsOfDoctrine/dbal-clickhouse.svg?branch=master)](https://travis-ci.org/FriendsOfDoctrine/dbal-clickhouse) -[![Total Downloads](https://poser.pugx.org/friendsofdoctrine/dbal-clickhouse/d/total.svg)](https://packagist.org/packages/friendsofdoctrine/dbal-clickhouse) -[![Latest Stable Version](https://poser.pugx.org/friendsofdoctrine/dbal-clickhouse/v/stable.svg)](https://packagist.org/packages/friendsofdoctrine/dbal-clickhouse) -[![License](https://poser.pugx.org/friendsofdoctrine/dbal-clickhouse/license.svg)](https://packagist.org/packages/friendsofdoctrine/dbal-clickhouse) +[![Latest Version on Packagist](https://img.shields.io/packagist/v/FriendsOfDoctrine/dbal-clickhouse.svg?style=flat-square)](https://packagist.org/packages/FriendsOfDoctrine/dbal-clickhouse) +[![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) +[![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) +[![Total Downloads](https://img.shields.io/packagist/dt/FriendsOfDoctrine/dbal-clickhouse.svg?style=flat-square)](https://packagist.org/packages/FriendsOfDoctrine/dbal-clickhouse) +[![Licence](https://img.shields.io/packagist/l/FriendsOfDoctrine/dbal-clickhouse.svg?style=flat-square)](https://packagist.org/packages/FriendsOfDoctrine/dbal-clickhouse) -# Doctrine DBAL ClickHouse Driver +Doctrine DBAL driver for ClickHouse - an open-source column-oriented database management system by [Yandex](https://clickhouse.yandex/) -Doctrine DBAL driver for ClickHouse -- an open-source column-oriented database management system by Yandex (https://clickhouse.yandex/) +**Driver is suitable for Symfony or any other framework using Doctrine.** -Driver is suitable for Symfony or any other framework using Doctrine. +* [v2](https://github.com/FriendsOfDoctrine/dbal-clickhouse/releases?q=v2.) supports Doctrine DBAL 3+ and PHP 8.0+ [BETA release] +* [v1](https://github.com/FriendsOfDoctrine/dbal-clickhouse/releases?q=v1.) supports Doctrine DBAL 2+ and PHP 7.1+ ## Installation diff --git a/composer.json b/composer.json index 1497a3d..bbb03a6 100644 --- a/composer.json +++ b/composer.json @@ -8,7 +8,7 @@ "clickhouse", "driver" ], - "homepage": "http://github.com/friendsofdoctrine/dbal-clickhouse", + "homepage": "https://github.com/friendsofdoctrine/dbal-clickhouse", "license": "MIT", "authors": [ { @@ -20,7 +20,7 @@ "email": "mitrofanovnk@yandex.ru" }, { - "name": "Sanikovich Aleksey", + "name": "Sanikovich Aliaksei", "email": "asanikovich@gmail.com" } ],