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

Symfony 7 #78

Merged
merged 9 commits into from
Apr 5, 2024
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: 8.2
coverage: none

- name: Install dependencies
Expand Down Expand Up @@ -53,16 +53,16 @@ jobs:
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
php-version: 8.2
coverage: none
extensions: intl

- name: Install roave/backward-compatibility-check
run: |
mkdir -p tools
composer --working-dir=tools require roave/backward-compatibility-check:^5 --no-update
echo '{}' > tools/composer.json
composer --working-dir=tools config --no-plugins allow-plugins.ocramius/package-versions true
composer --working-dir=tools update
composer --working-dir=tools require roave/backward-compatibility-check:^7

- name: Run roave/backward-compatibility-check
run: ./tools/vendor/bin/roave-backward-compatibility-check --from=5.0.0
Expand All @@ -82,7 +82,7 @@ jobs:
- windows-latest

php-version:
- "8.0"
- "8.2"

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
Expand All @@ -92,7 +92,7 @@ jobs:

include:
- os: ubuntu-latest
php-version: "8.1"
php-version: "8.0"
dependencies: highest
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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
},
"require": {
"php": ">=8.0.14",
"consolidation/config": "^2",
"consolidation/config": "^2 || ^3",
"consolidation/site-alias": "^3 || ^4",
"symfony/process": "^6",
"symfony/console": "^5.4 || ^6"
"symfony/process": "^6 || ^7",
"symfony/console": "^5.4 || ^6 || ^7"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3",
Expand All @@ -51,7 +51,7 @@
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.0.14"
"php": "8.2.17"
},
"allow-plugins": {
"ocramius/package-versions": true
Expand Down
Loading
Loading