HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/fabricas.colombiatrade.com.co/vendor2/psy/psysh/bin/build-stub
#!/usr/bin/env php
<?php

$license = file_get_contents(dirname(__DIR__) . '/LICENSE');
$license = str_replace('The MIT License (MIT)', '', $license);
$license = str_replace("\n", "\n * ", trim($license));

$autoload = <<<'EOS'
    Phar::mapPhar('psysh.phar');
    require 'phar://psysh.phar/.box/check_requirements.php';
    require 'phar://psysh.phar/vendor/autoload.php';
EOS;

$content = file_get_contents(dirname(__DIR__) . '/bin/psysh');
$content = preg_replace('{/\* <<<.*?>>> \*/}sm', $autoload, $content);
$content = preg_replace('/\\(c\\) .*?with this source code./sm', $license, $content);

$content .= '__HALT_COMPILER();';

@mkdir(dirname(__DIR__) . '/build');

file_put_contents(dirname(__DIR__) . '/build/stub', $content);