Remove Psalm

This commit is contained in:
Jérôme Gamez
2024-08-17 01:11:54 +02:00
parent 0d80994228
commit 17e1c4ce7e
5 changed files with 2 additions and 32 deletions
-1
View File
@@ -6,4 +6,3 @@
/.gitignore export-ignore /.gitignore export-ignore
/phpstan.neon.dist export-ignore /phpstan.neon.dist export-ignore
/phpunit.xml.dist export-ignore /phpunit.xml.dist export-ignore
/psalm.xml.dist export-ignore
-3
View File
@@ -42,9 +42,6 @@ jobs:
- name: Run PHPStan - name: Run PHPStan
run: vendor/bin/phpstan analyse --error-format=github run: vendor/bin/phpstan analyse --error-format=github
- name: Run Psalm
run: vendor/bin/psalm --output-format=github
- name: Setup Problem Matchers for PHPUnit - name: Setup Problem Matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
-1
View File
@@ -4,4 +4,3 @@
/composer.lock /composer.lock
/phpstan.neon /phpstan.neon
/phpunit.xml /phpunit.xml
/psalm.xml
+2 -6
View File
@@ -19,9 +19,7 @@
"phpstan/phpstan": "^1.11.10", "phpstan/phpstan": "^1.11.10",
"phpstan/phpstan-phpunit": "^1.4.0", "phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.0", "phpstan/phpstan-strict-rules": "^1.6.0",
"phpunit/phpunit": "^9.6.20", "phpunit/phpunit": "^9.6.20"
"psalm/plugin-phpunit": "^0.16.1",
"vimeo/psalm": "^4.30"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
@@ -48,11 +46,9 @@
"scripts": { "scripts": {
"test": [ "test": [
"@phpstan", "@phpstan",
"@psalm",
"@phpunit" "@phpunit"
], ],
"phpunit": "vendor/bin/phpunit", "phpunit": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse", "phpstan": "vendor/bin/phpstan analyse"
"psalm": "vendor/bin/psalm"
} }
} }
-21
View File
@@ -1,21 +0,0 @@
<?xml version="1.0"?>
<psalm
xmlns="https://getpsalm.org/schema/config"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
cacheDirectory=".build/psalm"
errorLevel="1"
resolveFromConfigFile="true"
>
<projectFiles>
<directory name="src" />
<directory name="tests" />
<ignoreFiles>
<directory name="vendor" />
</ignoreFiles>
</projectFiles>
<plugins>
<pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
</plugins>
</psalm>