1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 13:51:54 +01:00

Merge branch 'amp_v3' into strict_types

This commit is contained in:
Daniil Gentili 2023-07-28 11:45:47 +02:00
commit 6cbc7f162a
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7
3 changed files with 6 additions and 3 deletions

View File

@ -57,7 +57,7 @@ jobs:
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
php-version: '8.1'
tools: composer:v2
coverage: none
env:
@ -125,7 +125,6 @@ jobs:
fail-fast: false
matrix:
php-version:
- "8.0"
- "8.1"
- "8.2"
- "8.3"

View File

@ -15,7 +15,7 @@
}
],
"require": {
"php": "~8.1.17 || ~8.2.4",
"php": "~8.1.17 || ~8.2.4 || ~8.3.0",
"ext-SimpleXML": "*",
"ext-ctype": "*",
"ext-dom": "*",

View File

@ -535,6 +535,10 @@ class LanguageServer extends Dispatcher
$this->client->clientConfiguration->baseline,
);
}
$this->logInfo("Initializing: Complete.");
$progress->end('initialized');
/**
* Information about the server.
*