mirror of
https://github.com/beste/clock.git
synced 2026-08-17 17:47:13 +00:00
Remove Psalm
This commit is contained in:
@@ -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
|
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|
||||||
|
|||||||
@@ -4,4 +4,3 @@
|
|||||||
/composer.lock
|
/composer.lock
|
||||||
/phpstan.neon
|
/phpstan.neon
|
||||||
/phpunit.xml
|
/phpunit.xml
|
||||||
/psalm.xml
|
|
||||||
|
|||||||
+2
-6
@@ -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"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>
|
|
||||||
Reference in New Issue
Block a user