Skip to content
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

Update to symfony7 #62

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:

dependencies:
- locked

codecov:
- false

Expand All @@ -117,6 +117,12 @@ jobs:
codecov: true
php-ini-values: assert.exception=1, zend.assertions=1, opcache.enable=1, opcache.enable_cli=1, opcache.optimization_level=-1, opcache.jit_buffer_size=4096M, opcache.jit=1205

- os: ubuntu-latest
php-version: "8.3"
dependencies: highest
codecov: true
php-ini-values: assert.exception=1, zend.assertions=1, opcache.enable=1, opcache.enable_cli=1, opcache.optimization_level=-1, opcache.jit_buffer_size=4096M, opcache.jit=1205

steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -147,7 +153,7 @@ jobs:

- name: Make sure composer.json is valid before we start modifyig it
run: composer validate

- name: Clear platform php configuration in case we need to update phpunit
run: composer config --unset platform.php

Expand All @@ -167,7 +173,7 @@ jobs:

- name: Run tests with phpunit
run: composer unit

- name: Publish code coverage to Codecov
if: matrix.codecov == true
run: bash <(curl -s https://codecov.io/bash)
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
"php": ">=7.1.3",
"dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
"grasmash/expander": "^2.0.1 || ^3",
"symfony/event-dispatcher": "^4 || ^5 || ^6"
"symfony/event-dispatcher": "^4 || ^5 || ^6 || ^7"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^7.5.20 || ^8 || ^9",
"squizlabs/php_codesniffer": "^3",
"symfony/console": "^4 || ^5 || ^6",
"symfony/yaml": "^4 || ^5 || ^6",
"symfony/console": "^4 || ^5 || ^6 || ^7",
"symfony/yaml": "^4 || ^5 || ^6 || ^7",
"yoast/phpunit-polyfills": "^1"
},
"suggest": {
Expand Down
Loading
Loading