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

[2.x] PHP 8.4 support #90

Merged
merged 20 commits into from
Nov 9, 2024
Merged
Show file tree
Hide file tree
Changes from 8 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
9 changes: 8 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@ on:

jobs:
linux_tests:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3]
laravel: [8, 9, 10, 11]
include:
- php: 8.4
laravel: 11
exclude:
- php: 7.3
laravel: 9
Expand Down Expand Up @@ -66,6 +69,10 @@ jobs:
- name: Install PHP dependencies
run: composer update --prefer-stable --no-interaction --no-progress --with="illuminate/support:^${{ matrix.laravel }}"

- name: Install PHP dependencies (== PHP 8.4)
if: matrix.php == 8.4
run: composer update --prefer-stable --no-interaction --no-progress --ignore-platform-req=php+

- name: Execute tests
run: vendor/bin/pest tests/Php73Test.php
if: matrix.php == 7.3
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"require-dev": {
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"nesbot/carbon": "^2.61|^3.0",
"pestphp/pest": "^1.21.3",
"pestphp/pest": "^1.21.3|^2.0",
"phpstan/phpstan": "^1.8.2",
"symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
},
Expand Down
5 changes: 5 additions & 0 deletions src/Serializers/Native.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ public function __serialize()

$code = $reflector->getCode();


if (PHP_VERSION >= 8.4) {
$code = str_replace('\{closure:', '', $code);
}

$this->mapByReference($use);

$data = [
Expand Down