mirror of
https://github.com/halaxa/json-machine.git
synced 2025-07-15 19:46:22 +02:00
10 lines
220 B
PHP
10 lines
220 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require_once __DIR__.'/../vendor/autoload.php';
|
|
|
|
if ( ! class_exists('PHPUnit_Framework_TestCase')) {
|
|
class_alias(\PHPUnit\Framework\TestCase::class, 'PHPUnit_Framework_TestCase');
|
|
}
|