Skip to content

Commit 0d1fb09

Browse files
committed
update requirements
1 parent 2ae516b commit 0d1fb09

File tree

7 files changed

+232
-2853
lines changed

7 files changed

+232
-2853
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: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
if: github.event.pull_request.head.repo.full_name == 'php-etl/workflow-console-runtime'
1111
steps:
12-
- if: github.event.pull_request.head.repo.full_name == github.repository
13-
uses: actions/checkout@v3
14-
with:
15-
# Must be used to trigger workflow after push
16-
token: ${{ secrets.ACCESS_TOKEN }}
12+
- uses: actions/checkout@v3
1713

1814
- uses: shivammathur/setup-php@v2
1915
with:

composer.json

Lines changed: 8 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -17,39 +17,28 @@
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/pipeline": "^0.5@dev",
23-
"php-etl/console-state": "^0.2@dev",
24-
"php-etl/pipeline-console-runtime": "^0.2@dev"
20+
"symfony/console": "^6.0",
21+
"php-etl/pipeline-contracts": "^0.4",
22+
"php-etl/pipeline": "^0.5",
23+
"php-etl/console-state": "^0.2",
24+
"php-etl/pipeline-console-runtime": "^0.2"
2525
},
2626
"require-dev": {
27-
"phpunit/phpunit": "^9.5 || ^10.0",
2827
"rector/rector": "^0.15",
2928
"phpstan/phpstan": "^1.10",
30-
"friendsofphp/php-cs-fixer": "^3.0",
31-
"infection/infection": "^0.26.18"
29+
"friendsofphp/php-cs-fixer": "^3.0"
3230
},
3331
"autoload": {
3432
"psr-4": {
3533
"Kiboko\\Component\\Runtime\\Workflow\\": "src/"
3634
}
3735
},
38-
"autoload-dev": {
39-
"psr-4": {
40-
"functional\\Kiboko\\Component\\Runtime\\Workflow\\": "tests/unit/"
41-
}
42-
},
4336
"config": {
44-
"bin-dir": "bin",
45-
"allow-plugins": {
46-
"infection/extension-installer": true
47-
}
37+
"bin-dir": "bin"
4838
},
4939
"extra": {
5040
"branch-alias": {
51-
"dev-main": "0.2.x-dev",
52-
"dev-feature/qualityflow-imrovments": "0.2.x-dev"
41+
"dev-main": "0.2.x-dev"
5342
}
5443
}
5544
}

0 commit comments

Comments
 (0)