mirror of
https://github.com/Codappix/typo3-php-datasets.git
synced 2024-11-15 00:36:11 +01:00
Daniel Siepmann
ae33eeddc9
A bin was added with a single command. That command allows to convert multiple XML files to PHP files in place.
13 lines
296 B
PHP
Executable file
13 lines
296 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use Codappix\Typo3PhpDatasets\Command\ConvertFromXml;
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$application = new Application();
|
|
|
|
$application->add(new ConvertFromXml());
|
|
|
|
$application->run();
|