diff --git a/.github/workflows/cs.yaml b/.github/workflows/cs.yaml index 66541e4..94f41da 100644 --- a/.github/workflows/cs.yaml +++ b/.github/workflows/cs.yaml @@ -17,9 +17,6 @@ jobs: coding-standards: runs-on: ubuntu-latest - env: - PHP_CS_FIXER_IGNORE_ENV: '1' - strategy: matrix: operating-system: [ ubuntu-latest ] diff --git a/.gitignore b/.gitignore index 6cb4684..2c4fd92 100644 --- a/.gitignore +++ b/.gitignore @@ -6,10 +6,10 @@ /.php-cs-fixer.cache /.tools/ /build/ +/composer.lock /infection.log /tests/**/_generated/ /tests/**/_output/ /tests/e2e/*/var/ /var/ /vendor/ -/composer.lock diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 11147f1..e71a9f1 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -1,4 +1,5 @@ setRiskyAllowed(true) ->setRules([ - '@PHP71Migration' => true, - '@PHP71Migration:risky' => true, - '@PHPUnit60Migration:risky' => true, - '@PHPUnit75Migration:risky' => true, '@Symfony' => true, '@Symfony:risky' => true, 'blank_line_before_statement' => [ diff --git a/Makefile b/Makefile index dc07ef5..cec7399 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ help: # PHP CS Fixer PHP_CS_FIXER=./.tools/php-cs-fixer -PHP_CS_FIXER_URL="https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.35.1/php-cs-fixer.phar" +PHP_CS_FIXER_URL="https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.95.1/php-cs-fixer.phar" # PHPUnit PHPUNIT=vendor/bin/phpunit diff --git a/src/CodeceptionAdapter.php b/src/CodeceptionAdapter.php index e054f02..f357da1 100644 --- a/src/CodeceptionAdapter.php +++ b/src/CodeceptionAdapter.php @@ -1,4 +1,5 @@