From cca29a0dab30fbdd389578cd7c843b030b6773cb Mon Sep 17 00:00:00 2001 From: Yozhef Date: Wed, 26 Oct 2022 12:37:28 +0300 Subject: [PATCH 1/5] Update README.md --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2b74f39..2921b2c 100644 --- a/README.md +++ b/README.md @@ -100,14 +100,13 @@ An example of usage If your feature file is located in `src/tests/Behat/Features/api/version/route/example.feature` -##Configuration +Configuration ```yaml behat_nelmio_describer: behat_test_path: '%kernel.project_dir%/tests/Behat/Features' ``` - -##Controller +Used in Controller: ```php [master Build Status]: https://github.com/macpaw/behat-nelmio-describer/actions?query=workflow%3ACI+branch%3Amaster [master Build Status Image]: https://github.com/macpaw/behat-nelmio-describer/workflows/CI/badge.svg?branch=master From b2cca69305e61c0591599a0a7347a1ea73aba812 Mon Sep 17 00:00:00 2001 From: Yozhef Date: Tue, 8 Nov 2022 15:36:19 +0200 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b74f39..96b68fb 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Step 1: Install Bundle Open a command console, enter your project directory and execute: ```console -$ composer require --dev macpaw/behat-nelmio-describer +$ composer require macpaw/behat-nelmio-describer ``` This command requires you to have Composer installed globally, as explained From 9d208721d3e4dcb44908de90fa95a86e1b03b62b Mon Sep 17 00:00:00 2001 From: Yozhef Hisem Date: Fri, 13 Jan 2023 12:55:46 +0200 Subject: [PATCH 3/5] update ci process --- .github/workflows/ci.yaml | 10 ++++++---- commitlint.config.js | 16 ---------------- package.json | 22 ---------------------- 3 files changed, 6 insertions(+), 42 deletions(-) delete mode 100644 commitlint.config.js delete mode 100644 package.json diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b89b147..235d051 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,15 +14,17 @@ jobs: php: - '8.0' - '8.1' + - '8.2' coverage: ['none'] symfony-versions: - - '5.4.*' - - '6.0.*' + - '^5.4.*' + - '^6.0.*' + - '^6.2.*' include: - description: 'Log Code Coverage' - php: '8.1' + php: '8.2' coverage: 'xdebug' - symfony-versions: '^6.1' + symfony-versions: '^6.2' name: PHP ${{ matrix.php }} Symfony ${{ matrix.symfony-versions }} ${{ matrix.description }} steps: diff --git a/commitlint.config.js b/commitlint.config.js deleted file mode 100644 index ce51e9d..0000000 --- a/commitlint.config.js +++ /dev/null @@ -1,16 +0,0 @@ -module.exports = { - extends: ['@commitlint/config-conventional'], - rules: { - 'scope-case': [ - 2, - 'never', - [], - ], - 'header-max-length': [2, 'always', 300], - 'subject-case': [ - 2, - 'never', - ['pascal-case', 'camel-case', 'snake-case', 'kebab-case'], - ], - } -} diff --git a/package.json b/package.json deleted file mode 100644 index f9ecdee..0000000 --- a/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "behat-doctrine-fixtures", - "devDependencies": { - "@commitlint/cli": "^11.0.0", - "@commitlint/config-conventional": "^11.0.0", - "husky": "^4.3.0" - }, - "husky": { - "hooks": { - "commit-msg": "commitlint --verbose -E HUSKY_GIT_PARAMS" - } - }, - "repository": { - "type": "git", - "url": "git+https://github.com/MacPaw/behat-doctrine-fixtures.git" - }, - "license": "ISC", - "bugs": { - "url": "https://github.com/MacPaw/behat-doctrine-fixtures/issues" - }, - "homepage": "https://github.com/MacPaw/behat-doctrine-fixtures#readme" -} From 7c0d922d9f7d6fe0aa6784ac518fd17fb7d1aa4e Mon Sep 17 00:00:00 2001 From: Yozhef Hisem Date: Fri, 13 Jan 2023 12:58:15 +0200 Subject: [PATCH 4/5] update ci process --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 235d051..31a191b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,9 +17,9 @@ jobs: - '8.2' coverage: ['none'] symfony-versions: - - '^5.4.*' - - '^6.0.*' - - '^6.2.*' + - '^5.4' + - '^6.0' + - '^6.2' include: - description: 'Log Code Coverage' php: '8.2' From a5797c7472bc684237578400a853e98da33a588d Mon Sep 17 00:00:00 2001 From: Yozhef Hisem Date: Fri, 13 Jan 2023 13:01:29 +0200 Subject: [PATCH 5/5] update ci process --- .github/workflows/ci.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 31a191b..da3bca2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,6 @@ jobs: fail-fast: false matrix: php: - - '8.0' - '8.1' - '8.2' coverage: ['none'] @@ -21,6 +20,16 @@ jobs: - '^6.0' - '^6.2' include: + - php: '8.0' + coverage: 'xdebug' + symfony-versions: '^5.4' + - php: '8.0' + coverage: 'xdebug' + symfony-versions: '^6.0' + - description: 'Log Code Coverage' + php: '8.2' + coverage: 'xdebug' + symfony-versions: '^6.2' - description: 'Log Code Coverage' php: '8.2' coverage: 'xdebug'