Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for PHP 8.4 #307

Merged
merged 31 commits into from
Jan 14, 2025
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
66e66a8
Support for PHP 8.4
zingimmick Nov 5, 2024
147cdfd
Update tests.yml
zingimmick Nov 5, 2024
9d4338d
Update tests.yml
zingimmick Nov 5, 2024
9fc27fa
Update NullDriverTest.php
zingimmick Dec 1, 2024
4d7e4f4
Rector Rectify
zingimmick Dec 1, 2024
8a4334d
Update NullDriverTest.php
zingimmick Dec 1, 2024
892e940
Update NullDriverTest.php
zingimmick Dec 1, 2024
301bc18
Update NullDriverTest.php
zingimmick Dec 1, 2024
4b59435
Update phpunit.xml.dist
zingimmick Dec 1, 2024
1ad2e34
Update NullDriverTest.php
zingimmick Dec 1, 2024
eb83af1
Update NullDriverTest.php
zingimmick Dec 1, 2024
8a055ff
Update NullDriverTest.php
zingimmick Dec 1, 2024
0a46797
Update tests.yml
zingimmick Dec 1, 2024
86070c9
Update NullDriverTest.php
zingimmick Dec 1, 2024
7be22e4
Update NullDriverTest.php
zingimmick Dec 1, 2024
383de74
Update NullDriverTest.php
zingimmick Dec 1, 2024
961687a
Update NullDriverTest.php
zingimmick Dec 1, 2024
c3a4687
Update NullDriverTest.php
zingimmick Dec 1, 2024
9eeee46
Update NullDriverTest.php
zingimmick Dec 1, 2024
d7137b5
Update NullDriverTest.php
zingimmick Dec 1, 2024
279dbd3
Update NullDriverTest.php
zingimmick Dec 1, 2024
0f9c679
Merge branch '6.x' into zingimmick-patch-1
zingimmick Dec 2, 2024
368b5ee
Update NullDriverTest.php
zingimmick Dec 2, 2024
bbb3644
Update phpunit.xml.dist
zingimmick Dec 2, 2024
b498ed6
Update tests.yml
zingimmick Dec 2, 2024
4f7ea2f
Rector Rectify
zingimmick Dec 2, 2024
4a1c4f1
Update CommandTest.php
zingimmick Jan 14, 2025
ed338bd
Rector Rectify
zingimmick Jan 14, 2025
f48c3c6
Update tests.yml
zingimmick Jan 14, 2025
5296c05
Update tests.yml
zingimmick Jan 14, 2025
ff65d8a
Update tests.yml
zingimmick Jan 14, 2025
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
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.0', 8.1, 8.2, 8.3]
php: ['8.0', 8.1, 8.2, 8.3, 8.4]
stability: [lowest, highest]

name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
Expand All @@ -41,6 +41,10 @@ jobs:
name: Require packages for PHP greater than 8.2
run: composer require nesbot/carbon:'^2.62.1 || ^3.4' --no-update --dev

- if: matrix.php >= '8.4'
name: Require packages for PHP greater than 8.4
run: composer require orchestra/testbench:'^9.6' laravel/framework:'^10.48.25 || ^11.34.0' graham-campbell/manager:'^5.1.1' --no-update --dev

- name: Install dependencies
uses: ramsey/composer-install@v3
with:
Expand Down
Loading