Skip to content

Commit 1a8436c

Browse files
committed
update requirements
1 parent c3b7853 commit 1a8436c

File tree

8 files changed

+221
-2825
lines changed

8 files changed

+221
-2825
lines changed

.github/workflows/infection.yaml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/workflows/phpunit.yaml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/rector.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,12 @@ jobs:
1010
if: github.event.pull_request.head.repo.full_name == 'php-etl/pipeline-console-runtime'
1111
steps:
1212
-
13-
if: github.event.pull_request.head.repo.full_name == github.repository
1413
uses: actions/checkout@v3
15-
with:
16-
# Must be used to trigger workflow after push
17-
token: ${{ secrets.ACCESS_TOKEN }}
1814

1915
-
2016
uses: shivammathur/setup-php@v2
2117
with:
22-
php-version: 8.1
18+
php-version: '8.2'
2319
coverage: none
2420

2521
- uses: "ramsey/composer-install@v2"
@@ -28,6 +24,7 @@ jobs:
2824

2925
-
3026
# commit only to core contributors who have repository access
27+
if: github.event.pull_request.head.repo.full_name == github.repository
3128
uses: stefanzweifel/git-auto-commit-action@v4
3229
with:
3330
commit_message: '[rector] Rector fixes'

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@ Pipeline Console Runtime
33

44

55
[![Quality](https://github.com/php-etl/pipeline/actions/workflows/quality.yaml/badge.svg)](https://github.com/php-etl/pipeline/actions/workflows/quality.yaml)
6-
[![PHPUnit](https://github.com/php-etl/pipeline/actions/workflows/phpunit.yaml/badge.svg)](https://github.com/php-etl/pipeline/actions/workflows/phpunit.yaml)
7-
[![Mutations](https://github.com/php-etl/pipeline/actions/workflows/infection.yaml/badge.svg)](https://github.com/php-etl/pipeline/actions/workflows/infection.yaml)
86
[![PHPStan level 5](https://github.com/php-etl/pipeline/actions/workflows/phpstan-5.yaml/badge.svg)](https://github.com/php-etl/pipeline/actions/workflows/phpstan-5.yaml)
97
[![PHPStan level 5](https://github.com/php-etl/pipeline/actions/workflows/phpstan-6.yaml/badge.svg)](https://github.com/php-etl/pipeline/actions/workflows/phpstan-6.yaml)
108
[![PHPStan level 7](https://github.com/php-etl/pipeline/actions/workflows/phpstan-7.yaml/badge.svg)](https://github.com/php-etl/pipeline/actions/workflows/phpstan-7.yaml)
119
[![PHPStan level 8](https://github.com/php-etl/pipeline/actions/workflows/phpstan-8.yaml/badge.svg)](https://github.com/php-etl/pipeline/actions/workflows/phpstan-8.yaml)
1210
![PHP](https://img.shields.io/packagist/php-v/php-etl/pipeline)
13-
14-

composer.json

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@
1717
"prefer-stable": true,
1818
"require": {
1919
"php": "^8.2",
20-
"symfony/console": "^5.2 || ^6.0",
21-
"php-etl/pipeline-contracts": "^0.4@dev",
22-
"php-etl/console-state": "^0.2@dev"
20+
"symfony/console": "^6.0",
21+
"php-etl/pipeline-contracts": "^0.4",
22+
"php-etl/console-state": "^0.2"
2323
},
2424
"require-dev": {
2525
"phpstan/phpstan": "^1.10",
26-
"phpunit/phpunit": "^9.5 || ^10.0",
2726
"friendsofphp/php-cs-fixer": "^3.0",
28-
"infection/infection": "^0.26.18",
2927
"rector/rector": "^0.15"
3028
},
3129
"autoload": {
@@ -39,15 +37,11 @@
3937
}
4038
},
4139
"config": {
42-
"bin-dir": "bin",
43-
"allow-plugins": {
44-
"infection/extension-installer": true
45-
}
40+
"bin-dir": "bin"
4641
},
4742
"extra": {
4843
"branch-alias": {
49-
"dev-main": "0.2.x-dev",
50-
"dev-feature/qualityflow-imprrvments": "0.2.x-dev"
44+
"dev-main": "0.2.x-dev"
5145
}
5246
}
5347
}

0 commit comments

Comments
 (0)