Skip to content
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

Fix phplint constraint #1044

Merged
merged 1 commit into from
Nov 29, 2021
Merged
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Note: Can be used with `megalinter/megalinter@beta` in your GitHub Action mega-l

- Linters
- New linter `phplint` to speed-up linting of php files (#1031)
- Fix `phplint` constraint to accept all future bugfix v3.0.x versions (PHP 7.4 support) (#1043)


- Linter versions upgrades
Expand Down
2 changes: 1 addition & 1 deletion megalinter/descriptors/php.megalinter-descriptor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,6 @@ linters:
install:
dockerfile:
- |
RUN composer global require overtrue/phplint 3.0.0 \
RUN composer global require overtrue/phplint ^3.0 \
&& composer global config bin-dir --absolute
- ENV PATH="/root/.composer/vendor/bin:$PATH"