1234567891011121314151617181920212223242526272829 |
- <?php
- declare(strict_types=1);
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- if (PHP_VERSION_ID < 8_02_00 || PHP_VERSION_ID >= 8_03_00) {
- fwrite(STDERR, "PHP CS Fixer's config for PHP-HIGHEST can be executed only on highest supported PHP version - 8.2.*.\n");
- fwrite(STDERR, "Running it on lower PHP version would prevent calling migration rules.\n");
- exit(1);
- }
- $config = require __DIR__.'/.php-cs-fixer.dist.php';
- $config->setRules(array_merge($config->getRules(), [
- '@PHP82Migration' => true,
- '@PHP80Migration:risky' => true,
- ]));
- return $config;
|