mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-04 03:07:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			799 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			799 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env php
 | 
						|
<?php
 | 
						|
 | 
						|
if (!file_exists(dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit')) {
 | 
						|
    echo "Unable to find the `simple-phpunit` script in `vendor/symfony/phpunit-bridge/bin/`.\n";
 | 
						|
    exit(1);
 | 
						|
}
 | 
						|
if (false === getenv('SYMFONY_DEPRECATIONS_HELPER')) {
 | 
						|
    // see https://symfony.com/doc/current/components/phpunit_bridge.html#making-tests-fail
 | 
						|
    putenv('SYMFONY_DEPRECATIONS_HELPER=999999');
 | 
						|
}
 | 
						|
if (false === getenv('SYMFONY_PHPUNIT_REMOVE')) {
 | 
						|
    putenv('SYMFONY_PHPUNIT_REMOVE=');
 | 
						|
}
 | 
						|
if (false === getenv('SYMFONY_PHPUNIT_VERSION')) {
 | 
						|
    putenv('SYMFONY_PHPUNIT_VERSION=6.5');
 | 
						|
}
 | 
						|
if (false === getenv('SYMFONY_PHPUNIT_DIR')) {
 | 
						|
    putenv('SYMFONY_PHPUNIT_DIR='.__DIR__.'/.phpunit');
 | 
						|
}
 | 
						|
 | 
						|
require dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit';
 |