Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.4', '8.5']
include:
- php-version: '8.4'
job-name: 'PHP 8.4'
- php-version: '8.5'
job-name: 'PHP 8.5'
name: ${{ matrix.job-name }}
name: Checks (PHP 8.5)
steps:
- name: Checkout code
uses: actions/checkout@v5
Expand All @@ -33,7 +25,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
php-version: '8.5'

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/composer-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
php-version: '8.5'
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, dom, filter, gd, json, mbstring, pdo
coverage: none

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ vendor/bin/phpcbf --standard=vendor/pekral/phpcs-rules/ruleset.xml src/
## ⚙️ Configuration

- Rules can be extended and customized in `ruleset.xml`.
- Supports PHP 8.4+.
- Supports PHP 8.5+.
- Easy integration with CI/CD (GitHub Actions, GitLab CI, ...).

---
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"test:coverage": "vendor/bin/phpunit --coverage-html coverage-report"
},
"require": {
"php": "^8.4",
"php": "^8.5",
"dealerdirect/phpcodesniffer-composer-installer": "^1.2.1",
"slevomat/coding-standard": "^8.30.1"
},
Expand Down
Loading