Skip to content
Draft
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
- 'symfony/symfony:"6.3.*"'
- 'symfony/symfony:"6.4.*"'
- 'symfony/symfony:"7.0.*"'
- 'symfony/symfony:"8.0.*"'
include:
- php-version: '8.4'
driver-version: 'mongodb/[email protected]'
Expand Down
25 changes: 13 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,27 @@
{ "name": "Jérôme Tamarelle", "email": "[email protected]" },
{ "name": "Oskar Stark", "email": "[email protected]" }
],
"minimum-stability": "dev",
"require": {
"php": ">=8.1",
"ext-mongodb": "^1.21 || ^2.0",
"mongodb/mongodb": "^1.21 || ^2.0",
"symfony/config": "^6.3 || ^7.0",
"symfony/console": "^6.3 || ^7.0",
"symfony/dependency-injection": "^6.3.5 || ^7.0",
"symfony/http-kernel": "^6.3.5 || ^7.0",
"symfony/runtime": "^6.4.14 || ^7.1.7"
"symfony/config": "^6.3 || ^7.0 || ^8.0",
"symfony/console": "^6.3 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^6.3.5 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.3.5 || ^7.0 || ^8.0",
"symfony/runtime": "^6.4.14 || ^7.1.7 || ^8.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"rector/rector": "^2.0",
"symfony/browser-kit": "^6.3 || ^7.0",
"symfony/filesystem": "^6.3 || ^7.0",
"symfony/framework-bundle": "^6.3.5 || ^7.0",
"symfony/phpunit-bridge": "~6.3.10 || ^6.4.1 || ^7.0.1",
"symfony/stopwatch": "^6.3 || ^7.0",
"symfony/web-profiler-bundle": "^6.3 || ^7.0",
"symfony/yaml": "^6.3 || ^7.0",
"symfony/browser-kit": "^6.3 || ^7.0 || ^8.0",
"symfony/filesystem": "^6.3 || ^7.0 || ^8.0",
"symfony/framework-bundle": "^6.3.5 || ^7.0 || ^8.0",
"symfony/phpunit-bridge": "~6.3.10 || ^6.4.1 || ^7.0.1 || ^8.0",
"symfony/stopwatch": "^6.3 || ^7.0 || ^8.0",
"symfony/web-profiler-bundle": "^6.3 || ^7.0 || ^8.0",
"symfony/yaml": "^6.3 || ^7.0 || ^8.0",
"zenstruck/browser": "^1.6"
},
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<php>
<ini name="display_errors" value="1" />
<ini name="error_reporting" value="-1" />
<env name="MONGODB_PRIMARY_URL" value="mongodb://localhost:27017" />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any reason to user env oder server?

<server name="APP_ENV" value="test" force="true" />
<server name="SHELL_VERBOSITY" value="-1" />
<server name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0" />
Expand Down
Loading