-
Notifications
You must be signed in to change notification settings - Fork 3
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
Feature/next #6
base: master
Are you sure you want to change the base?
Feature/next #6
Conversation
"php": "^8.1", | ||
"php-http/client-common": "^2.6", | ||
"php-http/discovery": "^1.15.2", | ||
"php-http/mock-client": "^1.5", |
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.
Is this maybe a dev dependency (assuming it's only used in tests)
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.
The mock-client is only used in tests, but the others are used in the actual code type hinted - but also used for autodiscovery of libraries suitable
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.
We could move php-http/mock-client
to require-dev
section if it's only used in tests to avoid installing it for projects?
</testsuites> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">./app</directory> |
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.
Is there a plan for this dir to be added? Can't find it now so maybe it's a leftover
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.
Yeah this should be removed!
Co-authored-by: Zoran Antolović <zoran.antolovic.os@gmail.com>
This PR introduced the next stable release, utilising PSR standards and as much flexibility as possible.
Some logic has been abstracted to another package to reduce code duplication.