-
Notifications
You must be signed in to change notification settings - Fork 6
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 vimeo/psalm, update to phpunit 7.x, change require-dev to require… #22
base: master
Are you sure you want to change the base?
Changes from 3 commits
68d385d
747ff9f
c296d7e
f77f4e6
5c661ae
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,9 +1,8 @@ | ||
language: php | ||
php: | ||
- 7.4 | ||
- 7.2 | ||
- 5.6 | ||
- 5.5 | ||
- 5.4 | ||
- 5.3 | ||
|
||
install: | ||
- composer install | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,14 @@ | |
"php": ">=5.3.3" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~4", | ||
"mikey179/vfsstream": "1.4.*" | ||
"php": ">=7.2", | ||
"phpunit/phpunit": "~7", | ||
"mikey179/vfsstream": "1.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. can you upgrade to the latest 1.6.*? 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. done (changed to ^1.4) |
||
"vimeo/psalm" : "*" | ||
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. can you drop this dependency? 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. psalm is a dev only dependency - it won't affect users of the package. it will help make sure you've not added errors into the codebase (E.g. wrong parameters, missing parameter, incorrect doc types etc). |
||
}, | ||
"scripts": { | ||
"psalm" : "@php vendor/bin/psalm", | ||
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. can you drop this script? 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. adding it helps the code quality. I don't see why you'd want to drop it. Normal users of the package will not install psalm as a dependency. |
||
"test" : "@php vendor/bin/phpunit tests" | ||
}, | ||
"autoload": { | ||
"psr-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.
can i also ask to drop php5.6 from travis-ci?
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.
done