Skip to content

Commit

Permalink
Merge pull request KilikFr#94 from KilikFr/php-83-symfony7
Browse files Browse the repository at this point in the history
add php 8.3 support and Symfony 7
  • Loading branch information
mitch10593 authored Dec 26, 2023
2 parents 208a525 + 79ab14e commit 0b94a51
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@
}
],
"require": {
"php": "^7.4||^8.0",
"php": "^7.4||^8.3",
"ext-json": "*",
"twig/twig": "^1.0||^2.0||^3.0",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "~1.0||~2.0",
"symfony/form": "^4.0||^5.0||^6.0"
"symfony/form": "^4.0||^5.0||^6.0||^7.0"
},
"autoload": {
"psr-4": {
"Kilik\\TableBundle\\": "src"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0||^6.0"
"symfony/phpunit-bridge": "^5.0||^6.0||^7.0"
},
"config": {
"allow-plugins": {
Expand Down
2 changes: 1 addition & 1 deletion prepare-tests.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

docker run -it --rm -u ${UID} -v `pwd`:/app -v `pwd`/.composer:/.composer -w /app kilik/php:8.0-bullseye-dev composer install
docker run -it --rm -u ${UID} -v `pwd`:/app -v `pwd`/.composer:/.composer -w /app kilik/php:8.3-dev composer install
2 changes: 1 addition & 1 deletion run-tests.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

docker run -it --rm -u ${UID} -v `pwd`:/app -v `pwd`/.composer:/.composer -w /app kilik/php:8.0-bullseye-dev vendor/bin/simple-phpunit
docker run -it --rm -u ${UID} -v `pwd`:/app -v `pwd`/.composer:/.composer -w /app kilik/php:8.3-dev vendor/bin/simple-phpunit

0 comments on commit 0b94a51

Please sign in to comment.