- Implemented the X13Webp class with core functionalities for converting images to WebP format. - Added support for different PHP versions and defined constants for versioning. - Included translation strings for various user interface elements and messages. - Created XML file for module versioning.
10 lines
237 B
PHP
10 lines
237 B
PHP
<?php
|
|
include 'vendor/autoload.php';
|
|
//include 'src/ExecWithFallback.php';
|
|
use ExecWithFallback\ExecWithFallback;
|
|
use ExecWithFallback\Tests\ExecWithFallbackTest;
|
|
|
|
ExecWithFallback::exec('echo hello');
|
|
|
|
ExecWithFallbackTest::testExec();
|