Skip to content

Commit 9840ac0

Browse files
SonataCIdmaicher
authored andcommitted
DevKit updates
1 parent a360144 commit 9840ac0

File tree

6 files changed

+0
-41
lines changed

6 files changed

+0
-41
lines changed

.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 & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -41,30 +41,6 @@ jobs:
4141
- name: PHPStan
4242
run: vendor/bin/phpstan --no-progress --memory-limit=1G analyse --error-format=github
4343

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

.github/workflows/test.yaml

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

81-
# until Psalm supports Symfony 8
82-
- name: Remove psalm
83-
if: matrix.symfony-require == '8.0.*'
84-
run: composer remove vimeo/psalm psalm/plugin-symfony psalm/plugin-phpunit --dev --no-update
85-
8681
- name: Install variant
8782
if: matrix.variant != 'normal' && !startsWith(matrix.variant, 'symfony/symfony')
8883
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 SonataBlockBundle
1010

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

1615
[![Total Downloads](https://poser.pugx.org/sonata-project/block-bundle/downloads)](https://packagist.org/packages/sonata-project/block-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)