-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added README
- Loading branch information
Showing
8 changed files
with
132 additions
and
41 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: PHPStan level 5 | ||
on: push | ||
jobs: | ||
phpstan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: '**/vendor' | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- uses: php-actions/composer@v5 | ||
with: | ||
args: --prefer-dist | ||
php_version: 8.0 | ||
- name: PHPStan | ||
uses: php-actions/phpstan@v2 | ||
with: | ||
path: src/ | ||
level: 4 | ||
php_version: 8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: PHPStan level 7 | ||
on: push | ||
jobs: | ||
phpstan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: '**/vendor' | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- uses: php-actions/composer@v5 | ||
with: | ||
args: --prefer-dist | ||
php_version: 8.0 | ||
- name: PHPStan | ||
uses: php-actions/phpstan@v2 | ||
with: | ||
path: src/ | ||
level: 7 | ||
php_version: 8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: PHPStan level 8 | ||
on: push | ||
jobs: | ||
phpstan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: '**/vendor' | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- uses: php-actions/composer@v5 | ||
with: | ||
args: --prefer-dist | ||
php_version: 8.0 | ||
- name: PHPStan | ||
uses: php-actions/phpstan@v2 | ||
with: | ||
path: src/ | ||
level: 8 | ||
php_version: 8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Quality (PHPStan level 4) | ||
on: push | ||
jobs: | ||
cs-fixer: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Cs-Fixer | ||
run: | | ||
wget -q https://cs.symfony.com/download/php-cs-fixer-v2.phar -O php-cs-fixer | ||
chmod a+x php-cs-fixer | ||
PHP_CS_FIXER_IGNORE_ENV=true ./php-cs-fixer fix src --dry-run | ||
phpstan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: '**/vendor' | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- uses: php-actions/composer@v5 | ||
with: | ||
args: --prefer-dist | ||
php_version: 8.0 | ||
- name: PHPStan | ||
uses: php-actions/phpstan@v2 | ||
with: | ||
path: src/ | ||
level: 4 | ||
php_version: 8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Configurator contracts | ||
=== | ||
|
||
This package brings interfaces for opt-in components, such as plugins, aimed at providing extra functionalities to an Extract-Transform-Load code compiler. | ||
|
||
|
||
[![Quality](https://github.com/php-etl/configurator-contracts/actions/workflows/quality.yaml/badge.svg)](https://github.com/php-etl/configurator-contracts/actions/workflows/quality.yaml) | ||
[![PHPStan level 5](https://github.com/php-etl/configurator-contracts/actions/workflows/phpstan-5.yaml/badge.svg)](https://github.com/php-etl/configurator-contracts/actions/workflows/phpstan-5.yaml) | ||
[![PHPStan level 7](https://github.com/php-etl/configurator-contracts/actions/workflows/phpstan-7.yaml/badge.svg)](https://github.com/php-etl/configurator-contracts/actions/workflows/phpstan-7.yaml) | ||
[![PHPStan level 8](https://github.com/php-etl/configurator-contracts/actions/workflows/phpstan-8.yaml/badge.svg)](https://github.com/php-etl/configurator-contracts/actions/workflows/phpstan-8.yaml) | ||
![PHP](https://img.shields.io/packagist/php-v/php-etl/configurator-contracts) | ||
|
||
Documentation | ||
--- | ||
|
||
[See full Documentation](https://php-etl.github.io/documentation) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters