mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 00:36:38 +00:00
14 lines
334 B
PHP
14 lines
334 B
PHP
<?php
|
|
chdir(__DIR__ . '/..');
|
|
if (!file_exists('vendor/autoload.php')) {
|
|
`composer dump-autoload`;
|
|
}
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
if (!class_exists('PHPUnit\Framework\TestCase')) {
|
|
// we run on an older PHPUnit version without namespaces.
|
|
require_once __DIR__ . '/PHPUnit_Framework_TestCase.inc.php';
|
|
}
|
|
|