Install Smarty Composer package

This commit is contained in:
Clemens Schwaighofer
2023-02-17 11:23:53 +09:00
parent 43e66edfd1
commit b696338324
450 changed files with 32222 additions and 1081 deletions

View File

@@ -0,0 +1,13 @@
<?php
// Pure test for composer packages
require "../vendor/autoload.php";
$status = CoreLibs\Get\DotEnv::readEnvFile('.', 'test.env');
print "S: " . $status . ", ENV: <pre>" . print_r($_ENV, true) . "</pre><br>";
print "Bytes: " . CoreLibs\Convert\Byte::humanReadableByteFormat(123414) . "<br>";
// __END__