-
Notifications
You must be signed in to change notification settings - Fork 17
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
updated for CakePHP 3.6 #22
Conversation
Needs phpunit 6. |
composer.json
Outdated
@@ -31,10 +31,10 @@ | |||
}, | |||
"require": { | |||
"php": ">=5.6", | |||
"cakephp/cakephp": "~3.2" | |||
"cakephp/cakephp": "~3.6" |
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.
Bumping to 3.6 is not necessary. The updated methods exist in 3.5 too so please change this to ^3.5
.
composer.json
Outdated
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "*", | ||
"phpunit/phpunit": "^5.7|^6.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.
Ideally ^5.7.14|^6.0
is needed.
composer.json
Outdated
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "*", | ||
"phpunit/phpunit": "^5.7|^6.0", | ||
"cakephp/cakephp-codesniffer": "2.*" |
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.
Can you please update this too to ^3.0
.
Please, release a version or create a branch compatible with CakePHP 3.6.