Skip to content

Commit 6f00c4e

Browse files
SonataCIdmaicher
authored andcommitted
DevKit updates
1 parent 93a6c14 commit 6f00c4e

6 files changed

Lines changed: 0 additions & 42 deletions

File tree

.gitattributes

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,3 @@ rector.php export-ignore
1313
phpstan.neon.dist export-ignore
1414
phpstan-baseline.neon export-ignore
1515
phpstan-console-application.php export-ignore
16-
psalm.xml export-ignore
17-
psalm-baseline.xml export-ignore

.github/workflows/qa.yaml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -42,31 +42,6 @@ jobs:
4242
- name: PHPStan
4343
run: vendor/bin/phpstan --no-progress --memory-limit=1G analyse --error-format=github
4444

45-
psalm:
46-
name: Psalm
47-
48-
runs-on: ubuntu-latest
49-
50-
steps:
51-
- name: Checkout code
52-
uses: actions/checkout@v4
53-
54-
- name: Install PHP with extensions
55-
uses: shivammathur/setup-php@v2
56-
with:
57-
php-version: '8.5'
58-
coverage: none
59-
tools: composer:v2
60-
extensions: mongodb
61-
62-
- name: Install Composer dependencies (highest)
63-
uses: ramsey/composer-install@v3
64-
with:
65-
dependency-versions: highest
66-
67-
- name: Psalm
68-
run: vendor/bin/psalm --no-progress --show-info=false --stats --output-format=github --threads=$(nproc) --shepherd --php-version=8.5
69-
7045
rector:
7146
name: Rector
7247

.github/workflows/test.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,6 @@ jobs:
8585
- name: Add PHPUnit matcher
8686
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
8787

88-
# until Psalm supports Symfony 8
89-
- name: Remove psalm
90-
if: matrix.symfony-require == '8.0.*'
91-
run: composer remove vimeo/psalm psalm/plugin-symfony psalm/plugin-phpunit --dev --no-update
92-
9388
- name: Install variant
9489
if: matrix.variant != 'normal' && !startsWith(matrix.variant, 'symfony/symfony')
9590
run: composer require ${{ matrix.variant }} --no-update

Makefile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,6 @@ phpstan:
116116
vendor/bin/phpstan --memory-limit=1G analyse
117117
.PHONY: phpstan
118118

119-
psalm:
120-
vendor/bin/psalm --php-version=8.5
121-
.PHONY: psalm
122-
123119
rector:
124120
vendor/bin/rector
125121
.PHONY: rector

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ Symfony SonataClassificationBundle
1010

1111
[![Latest Stable Version](https://poser.pugx.org/sonata-project/classification-bundle/v/stable)](https://packagist.org/packages/sonata-project/classification-bundle)
1212
[![Latest Unstable Version](https://poser.pugx.org/sonata-project/classification-bundle/v/unstable)](https://packagist.org/packages/sonata-project/classification-bundle)
13-
[![Psalm Type Coverage][shepherd_stable_badge]][shepherd_stable_link]
1413
[![License](https://poser.pugx.org/sonata-project/classification-bundle/license)](https://packagist.org/packages/sonata-project/classification-bundle)
1514

1615
[![Total Downloads](https://poser.pugx.org/sonata-project/classification-bundle/downloads)](https://packagist.org/packages/sonata-project/classification-bundle)

tests/bootstrap.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,5 @@
3131
}
3232

3333
if (file_exists($file = __DIR__.'/custom_bootstrap.php')) {
34-
/**
35-
* @psalm-suppress MissingFile,UnusedPsalmSuppress
36-
*
37-
* @see https://github.com/vimeo/psalm/issues/3886
38-
*/
3934
require_once $file;
4035
}

0 commit comments

Comments
 (0)