Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Defines a named constant
<?php define(string $constant_name, mixed $value, bool $case_insensitive = false): bool
<?php         if (file_exists($file)) {

            require_once $file;

            define('PHPUNIT_COMPOSER_INSTALL', $file);



            break;

        }