diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b89b147..da3bca2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,17 +12,28 @@ jobs: fail-fast: false matrix: php: - - '8.0' - '8.1' + - '8.2' coverage: ['none'] symfony-versions: - - '5.4.*' - - '6.0.*' + - '^5.4' + - '^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.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/README.md b/README.md index 2b74f39..82c646b 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 @@ -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 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" -}