Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ jobs:
- uses: ramsey/composer-install@v3
- name: Validate the composer configuration
run: composer validate --strict
- name: Run Psalm
run: vendor/bin/psalm
- name: Run phpstan
run: vendor/bin/phpstan

build-phar:
needs:
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
/vendor/
/psalm.xml
/.phpunit.cache/
/.phpunit.result.cache
/.phpcs-cache
phpcs.xml
phpunit.xml
psalm.xml
behat.yml
box.json
box.phar
Expand Down
1 change: 0 additions & 1 deletion bin/pie
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ if (PieVersion::isPharBuild()) {
error_reporting(error_reporting() & ~E_DEPRECATED);
}

/** @psalm-suppress UnresolvableInclude */
include $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php';

$container = Container::factory();
Expand Down
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@
"ext-openssl": "*",
"behat/behat": "^3.23.0",
"doctrine/coding-standard": "^13.0.1",
"phpunit/phpunit": "^10.5.48",
"psalm/plugin-phpunit": "^0.19.5",
"vimeo/psalm": "^6.13.1"
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.5.48"
},
"replace": {
"symfony/polyfill-php81": "*",
Expand Down
Loading