PHP code example of zero-to-prod / package-helper
1. Go to this page and download the library: Download zero-to-prod/package-helper library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
zero-to-prod / package-helper example snippets
use Zerotoprod\OmdbModels\PackageHelper;
PackageHelper::publish(
$from,
$to,
PackageHelper::findNamespaceMapping($psr_4, $to),
static function(string $from, string $to){
echo "Copied: $from to $to" . PHP_EOL;
}
);
#!/usr/bin/env php
lper\PackageHelper;
if ($argc !== 2) {
die("Usage: <targetDir>\n");
}
$from = __DIR__ . '/../src';
if (!is_dir($from)) {
throw new RuntimeException("Source directory '$from' not found.");
}
$composer_json_file_path = getcwd() . '/composer.json';
if (!is_file($composer_json_file_path)) {
throw new RuntimeException("composer.json not found.");
}
$composer_json_data = json_decode(file_get_contents($composer_json_file_path), true);
$psr_4 = $composer_json_data['autoload']['psr-4'] ?? null;
if (!$psr_4) {
throw new RuntimeException('PSR-4 autoload section missing in composer.json.');
}
$to = rtrim($argv[1], '/');
PackageHelper::publish(
$from,
$to,
PackageHelper::determineNamespace($psr_4, $to),
static function(string $from, string $to){
echo "Copied: $from to $to" . PHP_EOL;
}
);