1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 16:42:57 +00:00
composer/phpstan/ignore-by-php-version.neon.php
Jordi Boggiano e61d4ad986
Update deps
2024-07-06 23:35:00 +02:00

12 lines
349 B
PHP

<?php declare(strict_types = 1);
// more inspiration at https://github.com/phpstan/phpstan-src/blob/master/build/ignore-by-php-version.neon.php
$includes = [];
if (PHP_VERSION_ID >= 80000) {
$includes[] = __DIR__ . '/baseline-8.3.neon';
}
$config['includes'] = $includes;
$config['parameters']['phpVersion'] = PHP_VERSION_ID;
return $config;