Skip to content

Commit

Permalink
Enhancement: Bring back support for composer/composer:^1
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Dec 30, 2020
1 parent 111fc79 commit 6945f9b
Show file tree
Hide file tree
Showing 6 changed files with 75 additions and 18 deletions.
36 changes: 24 additions & 12 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,30 @@ branches:
- "Dependency Analysis (7.4, locked)"
- "Static Code Analysis (7.4, locked)"
- "Static Code Analysis (7.4, locked)"
- "Tests (7.2, highest)"
- "Tests (7.2, locked)"
- "Tests (7.2, lowest)"
- "Tests (7.3, highest)"
- "Tests (7.3, locked)"
- "Tests (7.3, lowest)"
- "Tests (7.4, highest)"
- "Tests (7.4, locked)"
- "Tests (7.4, lowest)"
- "Tests (8.0, highest)"
- "Tests (8.0, locked)"
- "Tests (8.0, lowest)"
- "Tests (7.2, 1, highest)"
- "Tests (7.2, 1, locked)"
- "Tests (7.2, 1, lowest)"
- "Tests (7.2, 2, highest)"
- "Tests (7.2, 2, locked)"
- "Tests (7.2, 2, lowest)"
- "Tests (7.3, 1, highest)"
- "Tests (7.3, 1, locked)"
- "Tests (7.3, 1, lowest)"
- "Tests (7.3, 2, highest)"
- "Tests (7.3, 2, locked)"
- "Tests (7.3, 2, lowest)"
- "Tests (7.4, 1, highest)"
- "Tests (7.4, 1, locked)"
- "Tests (7.4, 1, lowest)"
- "Tests (7.4, 2, highest)"
- "Tests (7.4, 2, locked)"
- "Tests (7.4, 2, lowest)"
- "Tests (8.0, 1, highest)"
- "Tests (8.0, 1, locked)"
- "Tests (8.0, 1, lowest)"
- "Tests (8.0, 2, highest)"
- "Tests (8.0, 2, locked)"
- "Tests (8.0, 2, lowest)"
strict: false
restrictions:

Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,28 @@ jobs:
- "7.4"
- "8.0"

composer-version:
- "1"
- "2"

dependencies:
- "lowest"
- "locked"
- "highest"

include:
- php-version: "8.0"
composer-version: "2"
dependencies: "lowest"

- php-version: "8.0"
composer-version: "2"
dependencies: "locked"

- php-version: "8.0"
composer-version: "2"
dependencies: "highest"

steps:
- name: "Checkout"
uses: "actions/[email protected]"
Expand All @@ -222,6 +239,17 @@ jobs:
- name: "Set up problem matchers for phpunit/phpunit"
run: "echo \"::add-matcher::${{ runner.tool_cache }}/phpunit.json\""

- name: "Install composer:^1"
if: "matrix.composer-version == '1'"
run: "composer self-update ${{ env.COMPOSER_VERSION }}"

- name: "Install composer:^2"
if: "matrix.composer-version == '2'"
run: "composer self-update --snapshot"

- name: "Show composer version"
run: "composer --version"

- name: "Determine composer cache directory"
uses: "./.github/actions/composer/composer/determine-cache-directory"

Expand Down Expand Up @@ -340,6 +368,9 @@ jobs:
with:
dependencies: "${{ matrix.dependencies }}"

- name: "Remove composer/composer"
run: "composer remove composer/composer --no-interaction --no-progress"

- name: "Require composer/composer"
run: "composer require composer/composer:${{ env.COMPOSER_VERSION }} --no-interaction --no-progress"

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ jobs:
with:
dependencies: "${{ matrix.dependencies }}"

- name: "Remove composer/composer"
run: "composer remove composer/composer --no-interaction --no-progress"

- name: "Require composer/composer"
run: "composer require composer/composer:${{ env.COMPOSER_VERSION }} --no-interaction --no-progress"

Expand Down
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

For a full diff see [`2.12.2...main`][2.12.2...main].
For a full diff see [`2.13.0...main`][2.13.0...main].

## [`2.13.0`][2.13.0]

For a full diff see [`2.12.2...2.13.0`][2.12.2...2.13.0].

### Changed

* Brought back support for `composer/composer:^1.0.0` ([#644]), by [@localheinz]

## [`2.12.2`][2.12.2]

Expand Down Expand Up @@ -528,6 +536,7 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[2.12.0]: https://github.com/ergebnis/composer-normalize/releases/tag/2.12.0
[2.12.1]: https://github.com/ergebnis/composer-normalize/releases/tag/2.12.1
[2.12.2]: https://github.com/ergebnis/composer-normalize/releases/tag/2.12.2
[2.13.0]: https://github.com/ergebnis/composer-normalize/releases/tag/2.13.0

[81bc3a8...0.1.0]: https://github.com/ergebnis/composer-normalize/compare/81bc3a8...0.1.0
[0.1.0...0.2.0]: https://github.com/ergebnis/composer-normalize/compare/0.1.0...0.2.0
Expand Down Expand Up @@ -578,7 +587,8 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[2.11.0...2.12.0]: https://github.com/ergebnis/composer-normalize/compare/2.11.0...2.12.0
[2.12.0...2.12.1]: https://github.com/ergebnis/composer-normalize/compare/2.12.0...2.12.1
[2.12.1...2.12.2]: https://github.com/ergebnis/composer-normalize/compare/2.12.1...2.12.2
[2.12.2...main]: https://github.com/ergebnis/composer-normalize/compare/2.12.2...main
[2.12.2...2.13.0]: https://github.com/ergebnis/composer-normalize/compare/2.12.2...2.13.0
[2.13.0...main]: https://github.com/ergebnis/composer-normalize/compare/2.13.0...main

[#1]: https://github.com/ergebnis/composer-normalize/pull/1
[#2]: https://github.com/ergebnis/composer-normalize/pull/2
Expand Down Expand Up @@ -652,6 +662,7 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[#640]: https://github.com/ergebnis/composer-normalize/pull/640
[#641]: https://github.com/ergebnis/composer-normalize/pull/641
[#643]: https://github.com/ergebnis/composer-normalize/pull/643
[#644]: https://github.com/ergebnis/composer-normalize/pull/644
[#646]: https://github.com/ergebnis/composer-normalize/pull/646

[@core23]: https://github.com/core23
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
],
"require": {
"php": "^7.2 || ^8.0",
"composer-plugin-api": "^2.0.0",
"composer-plugin-api": "^1.1.0 || ^2.0.0",
"ergebnis/json-normalizer": "^1.0.1",
"ergebnis/json-printer": "^3.1.1",
"justinrainbow/json-schema": "^5.2.10",
"localheinz/diff": "^1.1.1"
},
"require-dev": {
"composer/composer": "^2.0.8",
"composer/composer": "^1.10.19 || ^2.0.8",
"ergebnis/license": "^1.1.0",
"ergebnis/php-cs-fixer-config": "^2.10.0",
"ergebnis/phpstan-rules": "~0.15.3",
Expand Down
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6945f9b

Please sign in to comment.