Skip to content

Commit 3b1e2d5

Browse files
authored
Add php 8.3 support (#105)
* Add php 8.3 support * Fix faker deprecation issue
1 parent 2f34039 commit 3b1e2d5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/pest-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup PHP
2626
uses: shivammathur/setup-php@v2
2727
with:
28-
php-version: 8.2
28+
php-version: 8.3
2929
coverage: xdebug
3030

3131
- name: Install dependencies

.github/workflows/pest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: [ 8.2, 8.1 ]
14+
php: [ 8.3, 8.2, 8.1 ]
1515
laravel: [ 10.* ]
1616
db: [ 'mysql:8.0', 'mysql:5.7', 'mariadb:10.9' ]
1717
dependency-version: [ prefer-lowest, prefer-stable ]

.github/workflows/php-cs-fixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup PHP
1616
uses: shivammathur/setup-php@v2
1717
with:
18-
php-version: 8.2
18+
php-version: 8.3
1919
coverage: none
2020

2121
- name: Install dependencies

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: [ 8.2, 8.1 ]
14+
php: [ 8.3, 8.2, 8.1 ]
1515

1616
steps:
1717
- name: Checkout code

tests/TestFactories/TestPlaceFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ class TestPlaceFactory extends Factory
1818
public function definition(): array
1919
{
2020
return [
21-
'name' => $this->faker->streetName,
22-
'address' => $this->faker->address,
21+
'name' => $this->faker->streetName(),
22+
'address' => $this->faker->address(),
2323
];
2424
}
2525
}

0 commit comments

Comments
 (0)