Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated pipeline contracts to v0.5 #17

Merged
merged 12 commits into from
Nov 14, 2023
4 changes: 2 additions & 2 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Quality (PHPStan level 3)
name: Quality (PHPStan level 4)
on: push
jobs:
cs-fixer:
Expand Down Expand Up @@ -33,5 +33,5 @@ jobs:
uses: php-actions/phpstan@v3
with:
path: src/
level: 3
level: 4
php_version: '8.2'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This package brings an implementation for the pipeline component, aimed at provi
with logging, line rejections and execution states.


[![Quality](https://github.com/php-etl/pipeline/actions/workflows/quality.yaml/badge.svg)](https://github.com/php-etl/pipeline/actions/workflows/quality.yaml)
[![Quality (PHPStan level 4)](https://github.com/php-etl/pipeline/actions/workflows/quality.yaml/badge.svg)](https://github.com/php-etl/pipeline/actions/workflows/quality.yaml)
[![PHPUnit](https://github.com/php-etl/pipeline/actions/workflows/phpunit.yaml/badge.svg)](https://github.com/php-etl/pipeline/actions/workflows/phpunit.yaml)
[![Mutations](https://github.com/php-etl/pipeline/actions/workflows/infection.yaml/badge.svg)](https://github.com/php-etl/pipeline/actions/workflows/infection.yaml)
[![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)
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
"php": "^8.2",
"psr/log": "^3.0",
"php-etl/bucket": "*",
"php-etl/pipeline-contracts": "0.4.*",
"php-etl/bucket-contracts": "0.2.*"
"php-etl/pipeline-contracts": "0.5.*"
},
"require-dev": {
"phpunit/php-invoker": "^4.0",
Expand All @@ -31,7 +30,7 @@
"rector/rector": "^0.15"
},
"provide": {
"php-etl/pipeline-implementation": "0.3.0"
"php-etl/pipeline-implementation": "0.5.0"
},
"autoload": {
"psr-4": {
Expand All @@ -46,12 +45,13 @@
"config": {
"bin-dir": "bin",
"allow-plugins": {
"infection/extension-installer": true
"infection/extension-installer": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-main": "0.5.x-dev"
"dev-main": "0.6.x-dev"
}
}
}
Loading
Loading