diff --git a/.github/workflows/code_analysis.yaml b/.github/workflows/code_analysis.yaml index f4e85d9af73..d374be5c847 100644 --- a/.github/workflows/code_analysis.yaml +++ b/.github/workflows/code_analysis.yaml @@ -81,10 +81,6 @@ jobs: composer require php-parallel-lint/php-parallel-lint --ansi vendor/bin/parallel-lint src bin/rector config tests rules --colors - - - name: 'Run StructArmed' - run: vendor/bin/structarmed analyze - name: ${{ matrix.actions.name }} runs-on: ubuntu-latest timeout-minutes: 10 diff --git a/composer.json b/composer.json index 07fd8a1b637..b1351eb12b4 100644 --- a/composer.json +++ b/composer.json @@ -42,7 +42,6 @@ "webmozart/assert": "^2.4" }, "require-dev": { - "boundwize/structarmed": "^0.14", "nette/robot-loader": "^4.1", "php-parallel-lint/php-parallel-lint": "^1.4", "phpstan/extension-installer": "^1.4", diff --git a/structarmed.php b/structarmed.php deleted file mode 100644 index 61913483c8d..00000000000 --- a/structarmed.php +++ /dev/null @@ -1,23 +0,0 @@ -skip([ - Psr4Preset::CLASSES_MUST_MATCH_COMPOSER => [ - // the namespace different is on purpose - __DIR__ . '/rules-tests/Renaming/Rector/Name/RenameClassRector', - __DIR__ . '/rules-tests/CodingStyle/Rector/Namespace_', - - // no namespace on purpose - __DIR__ . '/rules-tests/Php70/Rector/ClassMethod/Php4ConstructorRector/Source/ParentClass.php', - - // simulate under phpstan.phar - __DIR__ . '/rules-tests/Php71/Rector/FuncCall/RemoveExtraParametersRector/Source/phpstan.phar', - ], - ]) - ->withPreset(Preset::PSR4());