forked from dependabot/dependabot-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle development dependencies for PHP projects
As well as updating production dependencies in the "require" section of a `composer.json` file, we also want to ensure we're keeping development dependencies in the `require-dev`[1] section up to date (e.g., PHPUnit). We can safely attempt to update both sections because if a dependency exists in both require and require-dev, composer will complain about conflicts itself, so there shouldn't be any composer.json files in that state. [1]: See: https://getcomposer.org/doc/04-schema.md#require-dev
- Loading branch information
1 parent
e5b9b4b
commit 3b18d37
Showing
2 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters