-
Notifications
You must be signed in to change notification settings - Fork 0
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
Support symfony 7 #40
Conversation
dbb6178
to
e6c69bc
Compare
composer.json
Outdated
"roave/security-advisories": "dev-latest", | ||
"symfony/phpunit-bridge": "^6.2.7" | ||
"symfony/phpunit-bridge": "^6.4|^7.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why 6|7? This is for develop, use newest possible
phpunit.xml.dist
Outdated
@@ -1,23 +1,18 @@ | |||
<?xml version="1.0" encoding="UTF-8"?> | |||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" | |||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use file from vendor
backupGlobals="false" | ||
colors="true" | ||
convertDeprecationsToExceptions="false" | ||
cacheDirectory=".phpunit.cache" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this not default or something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to the documentation there is no default param for this one https://docs.phpunit.de/en/11.3/configuration.html#the-cachedirectory-attribute.
02f1f47
to
8c2e504
Compare
AC