Skip to content

Commit 3d8c401

Browse files
Update PHP version to 8.4 (#417)
Co-authored-by: Alexander Gomzyakov <alexander.gomzyakov@gmail.com>
1 parent d6e245f commit 3d8c401

File tree

6 files changed

+201
-200
lines changed

6 files changed

+201
-200
lines changed

.github/workflows/code-style.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
- name: Checkout code
1616
uses: actions/checkout@v4
1717

18-
- name: Setup PHP 8.3
18+
- name: Setup PHP 8.4
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: 8.3
21+
php-version: 8.4
2222

2323
- name: Install Composer Dependencies
2424
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
2525

2626
- name: Run checks of code style
27-
run: composer cs-check
27+
run: export PHP_CS_FIXER_IGNORE_ENV=1 && composer cs-check

.github/workflows/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: Checkout code
1616
uses: actions/checkout@v4
1717

18-
- name: Setup PHP 8.3
18+
- name: Setup PHP 8.4
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: 8.3
21+
php-version: 8.4
2222

2323
- name: Install Composer dependencies
2424
run: composer update --no-interaction --prefer-dist

.github/workflows/phpunit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
- name: Checkout Code
2626
uses: actions/checkout@v4
2727

28-
- name: Setup PHP 8.3
28+
- name: Setup PHP 8.4
2929
uses: shivammathur/setup-php@v2
3030
with:
31-
php-version: 8.3
31+
php-version: 8.4
3232

3333
- name: Copy .env
3434
run: php -r "file_exists('.env') || copy('.env.ci', '.env');"

.github/workflows/rector.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: Checkout code
1616
uses: actions/checkout@v4
1717

18-
- name: Setup PHP 8.3
18+
- name: Setup PHP 8.4
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: 8.3
21+
php-version: 8.4
2222

2323
- name: Install dependencies via Composer
2424
run: composer install --no-interaction --prefer-dist

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"keywords": ["blog", "laravel"],
66
"license": "MIT",
77
"require": {
8-
"php": "^8.3",
8+
"php": "^8.4",
99
"ext-intl": "*",
1010
"laravel/framework": "^11.9",
1111
"laravel/tinker": "^2.10.0",

0 commit comments

Comments
 (0)