Skip to content

Commit 731ad72

Browse files
Merge pull request #150 from TheDragonCode/1.x
Bump dependencies
2 parents 894b492 + bf6492c commit 731ad72

File tree

4 files changed

+452
-369
lines changed

4 files changed

+452
-369
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: true
1212
matrix:
13-
php: [ "8.2", "8.3", "8.4" ]
13+
php: [ "8.2", "8.3", "8.4", "8.5" ]
1414

1515
name: PHP ${{ matrix.php }}
1616

@@ -25,8 +25,13 @@ jobs:
2525
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd
2626
coverage: xdebug
2727

28-
- name: Install dependencies
28+
- name: Install dependencies for old PHP versions
29+
if: matrix.php != '8.5'
2930
run: composer install --prefer-dist --no-progress --no-interaction --no-suggest
3031

32+
- name: Install dependencies for PHP 8.5
33+
if: matrix.php == '8.5'
34+
run: composer update --prefer-dist --no-progress --no-interaction
35+
3136
- name: Execute tests
3237
run: composer test

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"laravel-zero/framework": "^12.0.1",
5050
"mockery/mockery": "^1.6.12",
5151
"nunomaduro/termwind": "^2.3.1",
52-
"pestphp/pest": "^3.8.4"
52+
"pestphp/pest": "^3.0 || ^4.0"
5353
},
5454
"minimum-stability": "stable",
5555
"prefer-stable": true,

0 commit comments

Comments
 (0)