-
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
Add configuration config #2
Conversation
class CodeAnalysisTest extends TestCase | ||
{ | ||
#[Test] | ||
public function testNoAnnotationTest(): void |
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.
I'm not sure tests are right place to check the annotation. Can we add this when creating a commit, e.g. using GrumPHP?
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.
GrumPHP can be skipped.
b5992a7
to
10b1b4d
Compare
@@ -4,9 +4,9 @@ | |||
"type": "symfony-bundle", | |||
"license": "MIT", | |||
"require": { | |||
"php": "8.*", | |||
"php": ">=8.1", |
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.
I'm against such notation, this in fact promises the lib will work with PHP 9, 10, 15, and whatnot. We have no idea whether that's true
Add configuration config.