diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 71af9f8..d808054 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,26 +12,28 @@ jobs: fail-fast: false matrix: php: - - '7.4' - - '8.0' - '8.1' + - '8.2' coverage: ['none'] symfony-versions: - - '4.4.*' - - '5.1.*' - - '5.2.*' - - '5.3.*' + - '5.4.*' + - '6.0.*' + - '6.1.*' + - '6.2.*' include: + - php: '7.4' + symfony-versions: '^5.4' + coverage: 'none' - php: '8.0' - symfony-versions: '^6.0' + symfony-versions: '^5.4' coverage: 'none' - - php: '8.1' + - php: '8.0' symfony-versions: '^6.0' coverage: 'none' - description: 'Log Code Coverage' - php: '8.0' + php: '8.2' coverage: 'xdebug' - symfony-versions: '^5.2' + symfony-versions: '^6.2' name: PHP ${{ matrix.php }} Symfony ${{ matrix.symfony-versions }} ${{ matrix.description }} steps: diff --git a/.github/workflows/gitleaks.yaml b/.github/workflows/gitleaks.yaml deleted file mode 100644 index 38463cd..0000000 --- a/.github/workflows/gitleaks.yaml +++ /dev/null @@ -1,16 +0,0 @@ -name: gitleaks - -on: - pull_request: - push: - branches: [ main, develop ] - -jobs: - gitleaks: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v1 - - - name: Run gitleaks - uses: zricethezav/gitleaks-action@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/composer.json b/composer.json index 0e4512d..09eccf2 100644 --- a/composer.json +++ b/composer.json @@ -62,5 +62,10 @@ "@phpunit", "@code-style" ] + }, + "config": { + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } } } diff --git a/package.json b/package.json deleted file mode 100644 index b36c73e..0000000 --- a/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "behat-redis-context", - "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/BehatRedisContext.git" - }, - "license": "ISC", - "bugs": { - "url": "https://github.com/MacPaw/BehatRedisContext/issues" - }, - "homepage": "https://github.com/MacPaw/BehatRedisContext#readme" -}