friendship ended with social-app. php is my new best friend
1<?php 2declare(strict_types=1); 3 4$includes = []; 5 6if(PHP_VERSION_ID < 80200){ 7 $includes[] = __DIR__.'/baseline-lt-8.2.neon'; 8} 9elseif(PHP_VERSION_ID < 80300){ 10 $includes[] = __DIR__.'/baseline-lt-8.3.neon'; 11} 12 13$config = []; 14$config['includes'] = $includes; 15$config['parameters']['phpVersion'] = PHP_VERSION_ID; 16 17return $config;