Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: PHPCSStandards/composer-installer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.6.2
Choose a base ref
...
head repository: PHPCSStandards/composer-installer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.7.0
Choose a head ref
  • 8 commits
  • 3 files changed
  • 3 contributors

Commits on Feb 14, 2020

  1. Allow installation on PHP 8

    As it was, the plugin when used by external standards, would block them from being tested on PHP 8.
    
    As all the dependencies in the `require` section allow for PHP 8, there is no reason not to allow it.
    
    The only dependencies currently in use which do not allow for PHP 8 yet are in the `require-dev` section. See the below output.
    
    This includes updating the Travis script to only do a full (`dev`) install when not on `nightly` and as PHPCompatibility is in the `require-dev` section, we need to require explicitly for `nightly` to make sure the integration test can run.
    
    ```bash
    # composer prohibits php:8
    
    composer/composer          1.9.3   requires  php (^5.3.2 || ^7.0)
    composer/semver            1.5.1   requires  php (^5.3.2 || ^7.0)
    seld/jsonlint              1.7.2   requires  php (^5.3 || ^7.0)
    symfony/console            v4.4.4  requires  php (^7.1.3)
    symfony/filesystem         v4.4.4  requires  php (^7.1.3)
    symfony/finder             v4.4.4  requires  php (^7.1.3)
    symfony/process            v4.4.4  requires  php (^7.1.3)
    symfony/service-contracts  v2.0.1  requires  php (^7.2.5)
    ```
    jrfnl committed Feb 14, 2020
    Configuration menu
    Copy the full SHA
    db97d73 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2020

  1. Merge pull request #106 from Dealerdirect/feature/allow-installation-…

    …on-php-8
    
    Allow installation on PHP 8
    Potherca authored Feb 16, 2020
    Configuration menu
    Copy the full SHA
    6971000 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2020

  1. Test with PHPCS 4.x and allow installation when using PHPCS 4.x

    Development for PHPCS 4.x has started in a new `4.0` branch.
    
    This PR is two-fold:
    
    1. On the one hand, it adds testing against PHPCS 4.x to the Travis matrix as an early warning system in case any cross-version compatibility fixes would be needed for the plugin itself.
        The build against `4.x-dev` has been added to `allow_failures` for now.
        Note: as PHPCompatibility currently doesn't allow for PHPCS 4.x (yet), I'm aliasing the install to `3.9.99` for testing purposes in the Travis build only.
    2. On the other hand, it allows installation in combination with PHPCS 4.x, which will in turn allow external standards which `require` this plugin, to start testing their standard against the PHPCS 4.x-dev branch.
        As it was now, external standards would get the plugin at version `0.4.4` as that's the last version with a PHPCS `*` constraint.
    jrfnl committed Mar 18, 2020
    Configuration menu
    Copy the full SHA
    89761e7 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2020

  1. Fix case of class name

    Seldaek authored Apr 1, 2020
    Configuration menu
    Copy the full SHA
    0695c81 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2020

  1. Merge pull request #109 from Seldaek/patch-1

    Fix case of class name
    Potherca authored Apr 6, 2020
    Configuration menu
    Copy the full SHA
    3d902fb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #107 from Dealerdirect/feature/allow-use-with-phpc…

    …s-4.x
    
    Test with PHPCS 4.x and allow installation when using PHPCS 4.x
    Potherca authored Apr 6, 2020
    Configuration menu
    Copy the full SHA
    7c75210 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2020

  1. Support Composer 2.0

    Minimal changes to updated the plugin to support Composer 2.0 which is expected late May/beginning of June.
    
    Changes are based on guidance found in:
    * #108
    * composer/composer#8726
    * https://github.com/composer/composer/blob/master/UPGRADE-2.0.md#for-integrators-and-plugin-authors
    
    Tested by danepowell and myself (Windows 7). Further testing would be very welcome!
    
    Fixes 108
    jrfnl committed May 11, 2020
    Configuration menu
    Copy the full SHA
    2cf2a33 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2020

  1. Configuration menu
    Copy the full SHA
    e8d8086 View commit details
    Browse the repository at this point in the history
Loading