Skip to content

Commit

Permalink
add Symfony 7 support [closes #128]
Browse files Browse the repository at this point in the history
  • Loading branch information
radimvaculik authored and JanTvrdik committed Jan 20, 2024
1 parent d9de74f commit a378ef9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"nette/tester": "~2.3",
"nette/utils": "~2.3 | ~3.0 | ~4.0",
"nextras/dbal": "~1.0 | ~2.0 | ~3.0 | ~4.0 | ~5.0@dev",
"symfony/config": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0",
"symfony/console": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0",
"symfony/dependency-injection": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0",
"symfony/framework-bundle": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0",
"symfony/http-kernel": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0",
"symfony/config": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0 | ~7.0",
"symfony/console": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0 | ~7.0",
"symfony/dependency-injection": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0 | ~7.0",
"symfony/framework-bundle": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0 | ~7.0",
"symfony/http-kernel": "~2.6 | ~3.0 | ~4.0 | ~5.0 | ~6.0 | ~7.0",
"tracy/tracy": "~2.6",
"ext-openssl": "*"
},
Expand Down
15 changes: 15 additions & 0 deletions tests/matrix/symfony-bundle/symfony-7.0-php-8.2.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
PHP_VERSION_MIN="80200"
PHP_VERSION_MAX="80399"
COMPOSER_REQUIRE="$COMPOSER_REQUIRE doctrine/dbal:~3.0"
COMPOSER_REQUIRE="$COMPOSER_REQUIRE doctrine/orm:~2.11"
COMPOSER_REQUIRE="$COMPOSER_REQUIRE doctrine/doctrine-bundle:~2.6"
COMPOSER_REQUIRE="$COMPOSER_REQUIRE symfony/config:~7.0"
COMPOSER_REQUIRE="$COMPOSER_REQUIRE symfony/console:~7.0"
COMPOSER_REQUIRE="$COMPOSER_REQUIRE symfony/dependency-injection:~7.0"
COMPOSER_REQUIRE="$COMPOSER_REQUIRE symfony/doctrine-bridge:~7.0"
COMPOSER_REQUIRE="$COMPOSER_REQUIRE symfony/framework-bundle:~7.0"
COMPOSER_REQUIRE="$COMPOSER_REQUIRE symfony/http-kernel:~7.0"
COMPOSER_REQUIRE="$COMPOSER_REQUIRE symfony/yaml:~7.0"
COMPOSER_REQUIRE="$COMPOSER_REQUIRE nette/tester:~2.3"
DBAL='doctrine'

0 comments on commit a378ef9

Please sign in to comment.