Skip to content

Commit 04bed1f

Browse files
committed
Merge branch 'stable' into develop
2 parents fcc8a27 + 2e2ef2d commit 04bed1f

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: ['ubuntu-latest', 'windows-latest']
26-
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
26+
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5', '8.6']
2727

2828
name: "Test + Lint: PHP ${{ matrix.php }} (${{ matrix.os == 'windows-latest' && 'Win' || 'Linux' }})"
2929

30-
continue-on-error: ${{ matrix.php == '8.5' }}
30+
continue-on-error: ${{ matrix.php == '8.6' }}
3131

3232
steps:
3333
- name: Prepare git to leave line endings alone
@@ -65,7 +65,7 @@ jobs:
6565
- name: Install Composer dependencies
6666
uses: "ramsey/composer-install@3cf229dc2919194e9e36783941438d17239e8520" # 3.1.1
6767
with:
68-
composer-options: ${{ matrix.php == '8.5' && '--ignore-platform-req=php+' || '' }}
68+
composer-options: ${{ matrix.php == '8.6' && '--ignore-platform-req=php+' || '' }}
6969
# Bust the cache at least once a month - output format: YYYY-MM.
7070
custom-cache-suffix: $(date -u "+%Y-%m")
7171

@@ -122,9 +122,10 @@ jobs:
122122
# - PHP 8.2 needs PHPCS 3.6.1+ to run without errors.
123123
# - PHP 8.3 needs PHPCS 3.8.0+ to run without errors (though the errors don't affect this package).
124124
# - PHP 8.4 needs PHPCS 3.8.0+ to run without errors (officially 3.11.0, but 3.8.0 will work fine).
125+
# - PHP 8.5 needs PHPCS 3.13.4+ to run without errors.
125126
#
126127
# Additionally, PHPCS 4.x has a minimum version requirement of PHP 7.2.
127-
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
128+
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5', '8.6']
128129
phpcs_version: ['3.x-dev', '4.0.0', '4.x-dev']
129130

130131
exclude:
@@ -182,7 +183,7 @@ jobs:
182183

183184
name: "Test: PHP ${{ matrix.php }} - PHPCS ${{ matrix.phpcs_version }}"
184185

185-
continue-on-error: ${{ matrix.php == '8.5' }}
186+
continue-on-error: ${{ matrix.php == '8.6' }}
186187

187188
steps:
188189
- name: Checkout code
@@ -218,7 +219,7 @@ jobs:
218219
- name: Install Composer dependencies
219220
uses: "ramsey/composer-install@3cf229dc2919194e9e36783941438d17239e8520" # 3.1.1
220221
with:
221-
composer-options: ${{ matrix.php == '8.5' && '--ignore-platform-req=php+' || '' }}
222+
composer-options: ${{ matrix.php == '8.6' && '--ignore-platform-req=php+' || '' }}
222223
# Bust the cache at least once a month - output format: YYYY-MM.
223224
custom-cache-suffix: $(date -u "+%Y-%m")
224225

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[![Minimum PHP Version](https://img.shields.io/packagist/dependency-v/phpcsstandards/phpcsdevtools/php.svg)][phpcsdevtools-packagist]
1313
[![Build Status CS](https://github.com/PHPCSStandards/PHPCSDevTools/actions/workflows/cs.yml/badge.svg)][gha-qa-results]
1414
[![Build Status Test](https://github.com/PHPCSStandards/PHPCSDevTools/actions/workflows/test.yml/badge.svg)][gha-test-results]
15-
[![Tested on PHP 5.4 to nightly](https://img.shields.io/badge/tested%20on-PHP%205.4%20|%205.5%20|%205.6%20|%207.0%20|%207.1%20|%207.2%20|%207.3%20|%207.4%20|%208.0%20|%208.1%20|%208.2%20|%208.3%20|%208.4%20|%20nightly-brightgreen.svg?maxAge=2419200)](https://github.com/PHPCSStandards/PHPCSDevTools/actions?query=workflow%3ATest)
15+
[![Tested on PHP 5.4 to nightly](https://img.shields.io/badge/tested%20on-PHP%205.4%20|%205.5%20|%205.6%20|%207.0%20|%207.1%20|%207.2%20|%207.3%20|%207.4%20|%208.0%20|%208.1%20|%208.2%20|%208.3%20|%208.4%20|%208.5%20|%20nightly-brightgreen.svg?maxAge=2419200)](https://github.com/PHPCSStandards/PHPCSDevTools/actions?query=workflow%3ATest)
1616

1717
[![License: LGPLv3](https://img.shields.io/github/license/PHPCSStandards/PHPCSDevTools)][phpcsdevtools-license]
1818
![Awesome](https://img.shields.io/badge/awesome%3F-yes!-brightgreen.svg)

0 commit comments

Comments
 (0)