Skip to content

Commit 1823b79

Browse files
committed
The COMPOSER_ROOT_VERSION hack should no longer be necessary
1 parent 8c4cb2f commit 1823b79

13 files changed

+2
-32
lines changed

.github/workflows/backward-compatibility.yml

-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ on:
1111
- 'src/**'
1212
- '.github/workflows/backward-compatibility.yml'
1313

14-
env:
15-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
16-
1714
concurrency:
1815
group: bc-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
1916
cancel-in-progress: true

.github/workflows/build-issue-bot.yml

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ on:
1414
- 'issue-bot/**'
1515
- '.github/workflows/build-issue-bot.yml'
1616

17-
env:
18-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
19-
2017
concurrency:
2118
group: build-issue-bot-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
2219
cancel-in-progress: true

.github/workflows/changelog-generator.yml

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ on:
1414
- 'changelog-generator/**'
1515
- '.github/workflows/changelog-generator.yml'
1616

17-
env:
18-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
19-
2017
concurrency:
2118
group: changelog-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
2219
cancel-in-progress: true

.github/workflows/checksum-phar.yml

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ on:
1717
- 'compiler/**'
1818
- '.github/workflows/checksum-phar.yml'
1919

20-
env:
21-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
22-
2320
concurrency:
2421
group: checksum-phar-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
2522
cancel-in-progress: true

.github/workflows/e2e-tests.yml

-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ on:
1818
- 'changelog-generator/**'
1919
- 'issue-bot/**'
2020

21-
env:
22-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
23-
2421
concurrency:
2522
group: e2e-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
2623
cancel-in-progress: true

.github/workflows/issue-bot.yml

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ on:
1717
- 'apigen/**'
1818
- 'changelog-generator/**'
1919

20-
env:
21-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
22-
2320
concurrency:
2421
group: run-issue-bot-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
2522
cancel-in-progress: true

.github/workflows/lint.yml

-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ on:
88
branches:
99
- "1.12.x"
1010

11-
env:
12-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
13-
1411
concurrency:
1512
group: lint-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
1613
cancel-in-progress: true

.github/workflows/reflection-golden-test.yml

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ on:
1919
- 'issue-bot/**'
2020

2121
env:
22-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
2322
REFLECTION_GOLDEN_TEST_FILE: "/tmp/reflection-golden.test"
2423
REFLECTION_GOLDEN_SYMBOLS_FILE: "/tmp/reflection-golden-symbols.txt"
2524

.github/workflows/static-analysis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ on:
1414
- 'compiler/**'
1515
- 'apigen/**'
1616

17-
env:
18-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
19-
2017
concurrency:
2118
group: sa-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
2219
cancel-in-progress: true

.github/workflows/tests.yml

-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ on:
1818
- 'changelog-generator/**'
1919
- 'issue-bot/**'
2020

21-
env:
22-
COMPOSER_ROOT_VERSION: "1.12.x-dev"
23-
2421
concurrency:
2522
group: tests-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
2623
cancel-in-progress: true

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ Any contributions are welcome.
1717
composer install
1818
```
1919

20-
If you encounter dependency problem, try using `export COMPOSER_ROOT_VERSION=1.11.x-dev`
21-
2220
If you are using macOS and are using an older version of `patch`, you may have problems with patch application failure during `composer install`. Try using `brew install gpatch` to install a newer and supported `patch` version.
2321

2422
### Building

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"symfony/string": "^5.4.3"
5151
},
5252
"replace": {
53-
"phpstan/phpstan": "self.version"
53+
"phpstan/phpstan": "1.12.x"
5454
},
5555
"require-dev": {
5656
"brianium/paratest": "^6.5",

composer.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)