-
Notifications
You must be signed in to change notification settings - Fork 10
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
Detection for vips 1 not longer works #46
Changes from all commits
6d5ed61
f3a47ab
848d465
4e8fdef
8af6065
ce361c8
20e95cc
da82c60
e254e15
ba14b7b
919e070
bf17d70
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"extensions": "", | ||
"ini_values": "ffi.enable=true, zend.max_allowed_stack_size=-1", | ||
"aptinstall": "libvips-dev" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"extensions": "", | ||
"ini_values": "ffi.enable=true, zend.max_allowed_stack_size=-1", | ||
"aptinstall": "libvips" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"extensions": ":ffi", | ||
"ini_values": "", | ||
"aptinstall": "libvips-dev" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,16 @@ | |
'strict_param' => true, | ||
'native_function_invocation' => ['include' => ['@compiler_optimized']], | ||
'phpdoc_no_empty_return' => false, | ||
'no_superfluous_phpdoc_tags' => true, | ||
'no_superfluous_phpdoc_tags' => false, | ||
'fully_qualified_strict_types' => false, | ||
'native_function_invocation' => false, | ||
'no_null_property_initialization' => false, | ||
'phpdoc_trim' => false, | ||
'blank_line_before_statement' => false, | ||
'phpdoc_add_missing_param_annotation' => false, | ||
'modernize_strpos' => false, | ||
'trailing_comma_in_multiline' => false, | ||
'no_whitespace_in_blank_line' => false, | ||
Comment on lines
+33
to
+42
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. to reduce too much changes inside this PR but still allow to test against PHP 8.4 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Linter changes are totally fine for me. That doesn't change functionality |
||
]) | ||
->setFinder( | ||
$finder | ||
|
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 will keep this may helpful in future?