Skip to content
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

[WIP] Include development dependencies in FileParsers::Php::Composer #46

Merged
merged 3 commits into from
Sep 9, 2017

Commits on Aug 29, 2017

  1. Configuration menu
    Copy the full SHA
    02f3ca6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e5b9b4b View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2017

  1. 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
    petehamilton committed Sep 9, 2017
    Configuration menu
    Copy the full SHA
    3b18d37 View commit details
    Browse the repository at this point in the history