Skip to content

Commit 432dff4

Browse files
authored
fix(correct dev tools): (#22)
* fix(correct dev tools): Signed-off-by: Marvin Naumann <1013829+nivseb@users.noreply.github.com>
1 parent e6936ee commit 432dff4

4 files changed

Lines changed: 7 additions & 197 deletions

File tree

.github/workflows/analysis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ jobs:
4141
matrix:
4242
php:
4343
- "8.3"
44+
dependency-version:
45+
- "prefer-stable"
4446
steps:
4547
- uses: "actions/checkout@v4"
4648
- uses: "shivammathur/setup-php@v2"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: 'Upload Artifact'
3737
uses: actions/upload-artifact@v4
3838
with:
39-
name: "coverage-reports-${{ matrix.php }}-${{ matrix.dependencies }}"
39+
name: "coverage-reports-${{ matrix.php }}-${{ matrix.dependency-version }}"
4040
path: |
4141
tests/test_results/clover.xml
4242
tests/test_results/cobertura.xml

composer.json

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,30 +42,24 @@
4242
"scripts": {
4343
"check": [
4444
"@composer validate",
45-
"@phpstan",
46-
"@insights"
45+
"@phpstan"
4746
],
4847
"check-dev": [
4948
"@composer validate",
50-
"@phpstan-dev",
51-
"@insights-dev"
49+
"@phpstan-dev"
5250
],
5351
"analyse": [
54-
"@phpstan",
55-
"@insights"
52+
"@phpstan"
5653
],
5754
"analyse-dev": [
58-
"@phpstan-dev",
59-
"@insights-dev"
55+
"@phpstan-dev"
6056
],
6157
"uniform": [
6258
"@rector",
6359
"@format"
6460
],
6561
"phpstan": "vendor/bin/phpstan analyse -c ./dev/config/phpstan.neon",
6662
"phpstan-dev": "vendor/bin/phpstan analyse -c ./dev/config/phpstan-dev.neon",
67-
"insights-dev": "vendor/bin/phpinsights --no-interaction -vvv --config-path=./dev/config/phpinsights.php analyse src tests",
68-
"insights": "vendor/bin/phpinsights --no-interaction -vvv --config-path=./dev/config/phpinsights.php analyse src",
6963
"rector": "vendor/bin/rector process -c ./dev/config/rector.php",
7064
"format": "vendor/bin/php-cs-fixer fix --diff --config=./dev/config/php-cs-fixer.php",
7165
"format:check": "vendor/bin/php-cs-fixer check --config=./dev/config/php-cs-fixer.php",
@@ -81,7 +75,6 @@
8175
"kubawerlos/php-cs-fixer-custom-fixers": "^3.22",
8276
"mockery/mockery": "^1.6",
8377
"phpstan/phpstan": "^1.12",
84-
"nunomaduro/phpinsights": "^2.12",
8578
"rector/rector": "^1.2"
8679
},
8780
"config": {

dev/config/phpinsights.php

Lines changed: 0 additions & 185 deletions
This file was deleted.

0 commit comments

Comments
 (0)