Skip to content

Commit

Permalink
PHP 8.4 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
loicsapone authored Nov 23, 2024
1 parent 0109bd1 commit 112c7ad
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: 8.4
coverage: none

- name: Install dependencies
Expand All @@ -27,7 +27,7 @@ jobs:
dependency-versions: ${{ matrix.dependencies }}

- name: PHP-CS-Fixer
run: php vendor/bin/php-cs-fixer fix --dry-run --diff --no-ansi
run: PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer fix --dry-run --diff --no-ansi

phpstan:
runs-on: ubuntu-latest
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: 8.4
coverage: none

- name: Install dependencies
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: 8.4
coverage: none

- name: Install dependencies
Expand All @@ -76,12 +76,12 @@ jobs:
include:
# Latest Symfony version support
- os: ubuntu-latest
php_version: "8.3"
php_version: "8.4"
symfony_version: "7.0"
stability: "stable"
# LTS Symfony version support
- os: ubuntu-latest
php_version: "8.3"
php_version: "8.4"
symfony_version: "6.4"
stability: "stable"
# Lowest deps support
Expand All @@ -92,8 +92,8 @@ jobs:
stability: "stable"
# Upcoming Symfony versions
- os: ubuntu-latest
php_version: "8.3"
symfony_version: "7.1.x-dev"
php_version: "8.4"
symfony_version: "7.2.x-dev"
stability: "dev"

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .infrastructure/frankenphp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM dunglas/frankenphp:latest-php8.3-alpine
FROM dunglas/frankenphp:latest-php8.4-alpine

# persistent / runtime deps
RUN apk add --no-cache \
Expand Down
1 change: 1 addition & 0 deletions phpunit.dist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<env name="APP_ENV" value="test" />
<env name="KERNEL_CLASS" value="Mezcalito\FileManagerBundle\Tests\TestApplication\Kernel" />
<server name="SHELL_VERBOSITY" value="-1" />
<server name="SYMFONY_DEPRECATIONS_HELPER" value="disabled" />
</php>

<testsuites>
Expand Down

0 comments on commit 112c7ad

Please sign in to comment.