Skip to content

Commit 586331f

Browse files
committed
build: upd deps, add php 8.5 to ci
1 parent 13af0c1 commit 586331f

3 files changed

Lines changed: 19 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,22 @@ jobs:
5555
composer-flags: '--prefer-lowest'
5656
job-description: 'Ubuntu; PHP 8.4; lowest-deps'
5757

58+
- operating-system: 'ubuntu-latest'
59+
php-version: '8.5'
60+
job-description: 'Ubuntu; PHP 8.5; latest-deps'
61+
62+
- operating-system: 'ubuntu-latest'
63+
php-version: '8.5'
64+
composer-flags: '--prefer-lowest'
65+
job-description: 'Ubuntu; PHP 8.5; lowest-deps'
66+
5867
- operating-system: 'windows-latest'
59-
php-version: '8.4'
60-
job-description: 'Windows; PHP 8.4; latest-deps'
68+
php-version: '8.5'
69+
job-description: 'Windows; PHP 8.5; latest-deps'
6170

6271
- operating-system: 'macos-latest'
63-
php-version: '8.4'
64-
job-description: 'MacOS; PHP 8.4; latest-deps'
65-
72+
php-version: '8.5'
73+
job-description: 'MacOS; PHP 8.5; latest-deps'
6674

6775
name: ${{ matrix.job-description }}
6876

@@ -75,7 +83,7 @@ jobs:
7583
git config --global core.eol lf
7684
7785
- name: Checkout code
78-
uses: actions/checkout@v4
86+
uses: actions/checkout@v6
7987

8088
- name: Setup PHP
8189
uses: shivammathur/setup-php@v2

.php-cs-fixer.dist.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
->setRules([
99
'@Symfony' => true,
1010
'@Symfony:risky' => true,
11-
'@PHP80Migration:risky' => true,
12-
'@PHP80Migration' => true,
11+
'@PHP8x0Migration:risky' => true,
12+
'@PHP8x0Migration' => true,
1313

1414
'combine_consecutive_issets' => true,
1515
'combine_consecutive_unsets' => true,

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"license": "LGPL-3.0-or-later",
66
"require": {
77
"php": ">=8.0.2",
8-
"symfony/process": "^5.4||^6.4||^7.0"
8+
"symfony/process": "^6.4||^7.4||^8.0"
99
},
1010
"require-dev": {
11-
"phpunit/phpunit": "^9.6.22",
12-
"friendsofphp/php-cs-fixer": "^3.68.5"
11+
"phpunit/phpunit": "^9.6.31",
12+
"friendsofphp/php-cs-fixer": "^3.91.3"
1313
},
1414
"authors": [
1515
{

0 commit comments

Comments
 (0)