-
Notifications
You must be signed in to change notification settings - Fork 2
Update plugin to be compatible with PHP 8.3 #9
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
Changes from 1 commit
4c188a8
02a7c2b
c1ad7e3
d8e132f
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 |
|---|---|---|
|
|
@@ -28,30 +28,18 @@ | |
| } | ||
| }, | ||
| "require": { | ||
| "php": "^7.4 || ^8.0 || ^8.1", | ||
| "php": "^7.4 || ^8.0", | ||
| "psr/log": "^1.1.3", | ||
| "psr/container": "^1.1.1" | ||
| }, | ||
| "require-dev": { | ||
| "roave/security-advisories": "dev-latest", | ||
| "devgeniem/geniem-rules-codesniffer": "^1", | ||
|
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. Eikö tää ja lint-skripti kannattaisi säilyttää? Vai miksei voi käyttää?
Contributor
Author
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. Restored in 02a7c2b — |
||
| "brainmaestro/composer-git-hooks": "^v2.8.5", | ||
| "phpunit/phpunit": "^9", | ||
| "phpunit/phpunit": "^9.6", | ||
| "10up/wp_mock": "^0.4.2", | ||
| "m6web/redis-mock": "^5", | ||
| "predis/predis": "2.0.x-dev as 2.0.0.0" | ||
| "predis/predis": "^2.0", | ||
| "m6web/redis-mock": "^5.6" | ||
| }, | ||
| "scripts": { | ||
| "test": "vendor/bin/phpunit", | ||
| "lint": "vendor/bin/phpcs --standard=Geniem plugin.php src/", | ||
| "lint-without-warnings": "vendor/bin/phpcs --standard=Geniem plugin.php src/ --warning-severity=8", | ||
| "cghooks": "vendor/bin/cghooks" | ||
| }, | ||
| "extra": { | ||
| "hooks": { | ||
| "pre-commit": [ | ||
| "composer lint-without-warnings" | ||
| ] | ||
| } | ||
| "test": "vendor/bin/phpunit" | ||
| } | ||
| } | ||
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.
Tästä voisi oikeastaan jo poistaa
7.4eli pelkästään^8.0There 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.
Done in 02a7c2b — PHP requirement is now
^8.0only.