-
Notifications
You must be signed in to change notification settings - Fork 3
Add support for Symfony 8 #13
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,6 +19,9 @@ jobs: | |
| - php: "8.2" | ||
| - php: "8.3" | ||
| - php: "8.4" | ||
| - php: "8.4" | ||
| symfony-version: 8.0.x-dev | ||
|
||
| composer-stability: dev | ||
|
||
| steps: | ||
| - name: Checkout source | ||
| uses: actions/checkout@v4 | ||
|
|
@@ -27,8 +30,18 @@ jobs: | |
| with: | ||
| php-version: ${{ matrix.php }} | ||
| ini-values: zend.assertions=1, error_reporting=-1, display_errors=On, log_errors_max_len=0 | ||
| - name: Install and configure Symfony Flex | ||
| if: matrix.symfony-version | ||
| run: | | ||
| composer global require --no-progress --no-scripts --no-plugins symfony/flex | ||
| composer global config --no-plugins allow-plugins.symfony/flex true | ||
| - name: Configure Composer minimum-stability | ||
| if: matrix.composer-stability | ||
| run: composer config minimum-stability ${{ matrix.composer-stability }} | ||
| - name: "Update composer dependencies" | ||
| run: composer update -o --no-interaction --no-progress ${{ matrix.COMPOSER_FLAGS }} | ||
| env: | ||
| SYMFONY_REQUIRE: ${{ matrix.symfony-version }} | ||
| - name: Tests | ||
| env: | ||
| PHP_CS_FIXER_IGNORE_ENV: ${{ matrix.PHP_CS_FIXER_IGNORE_ENV }} | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.