1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-13 17:57:37 +01:00

Merge pull request #7292 from weirdan/replace-webmozart-pathutils

This commit is contained in:
Bruce Weirdan 2022-01-04 15:25:52 +02:00 committed by GitHub
commit f40e6df6fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@
"openlss/lib-array2xml": "^1.0", "openlss/lib-array2xml": "^1.0",
"sebastian/diff": "^4.0", "sebastian/diff": "^4.0",
"symfony/console": "^3.4.17 || ^4.1.6 || ^5.0 || ^6.0", "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0 || ^6.0",
"webmozart/path-util": "^2.3" "symfony/filesystem": "^5.4 || ^6.0"
}, },
"provide": { "provide": {
"psalm/psalm": "self.version" "psalm/psalm": "self.version"

View File

@ -38,9 +38,9 @@ use Psalm\Progress\Progress;
use Psalm\Progress\VoidProgress; use Psalm\Progress\VoidProgress;
use SimpleXMLElement; use SimpleXMLElement;
use SimpleXMLIterator; use SimpleXMLIterator;
use Symfony\Component\Filesystem\Path;
use Throwable; use Throwable;
use UnexpectedValueException; use UnexpectedValueException;
use Webmozart\PathUtil\Path;
use XdgBaseDir\Xdg; use XdgBaseDir\Xdg;
use stdClass; use stdClass;

View File

@ -33,7 +33,7 @@ use Psalm\Progress\VoidProgress;
use Psalm\Report; use Psalm\Report;
use Psalm\Report\ReportOptions; use Psalm\Report\ReportOptions;
use RuntimeException; use RuntimeException;
use Webmozart\PathUtil\Path; use Symfony\Component\Filesystem\Path;
use function array_filter; use function array_filter;
use function array_key_exists; use function array_key_exists;