diff --git a/.github/workflows/pest-coverage.yml b/.github/workflows/pest-coverage.yml index 3db138a..37948e3 100644 --- a/.github/workflows/pest-coverage.yml +++ b/.github/workflows/pest-coverage.yml @@ -25,7 +25,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.2 + php-version: 8.3 coverage: xdebug - name: Install dependencies diff --git a/.github/workflows/pest.yml b/.github/workflows/pest.yml index 4a341be..ac1c1c7 100644 --- a/.github/workflows/pest.yml +++ b/.github/workflows/pest.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ 8.2, 8.1 ] + php: [ 8.3, 8.2, 8.1 ] laravel: [ 10.* ] db: [ 'mysql:8.0', 'mysql:5.7', 'mariadb:10.9' ] dependency-version: [ prefer-lowest, prefer-stable ] diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml index ce6d675..34d897e 100644 --- a/.github/workflows/php-cs-fixer.yml +++ b/.github/workflows/php-cs-fixer.yml @@ -15,7 +15,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.2 + php-version: 8.3 coverage: none - name: Install dependencies diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index b9ac03f..cbed36e 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ 8.2, 8.1 ] + php: [ 8.3, 8.2, 8.1 ] steps: - name: Checkout code diff --git a/tests/TestFactories/TestPlaceFactory.php b/tests/TestFactories/TestPlaceFactory.php index e773403..b111e14 100644 --- a/tests/TestFactories/TestPlaceFactory.php +++ b/tests/TestFactories/TestPlaceFactory.php @@ -18,8 +18,8 @@ class TestPlaceFactory extends Factory public function definition(): array { return [ - 'name' => $this->faker->streetName, - 'address' => $this->faker->address, + 'name' => $this->faker->streetName(), + 'address' => $this->faker->address(), ]; } }