Supported Versions: PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8
Outputs or returns a parsable string representation of a variable
<?php var_export(mixed $value, bool $return = false): ?string
<?php             foreach ($paths as $path) {

                $exportedPaths[] = $this->getPathCode($filesystem, $basePath, $vendorPath, $path);

            }

            $exportedPrefix = var_export($namespace, true);

            $namespacesFile .= "    $exportedPrefix => ";

            $namespacesFile .= "array(".implode(', ', $exportedPaths)."),\n";

        }
<?php             foreach ($paths as $path) {

                $exportedPaths[] = $this->getPathCode($filesystem, $basePath, $vendorPath, $path);

            }

            $exportedPrefix = var_export($namespace, true);

            $psr4File .= "    $exportedPrefix => ";

            $psr4File .= "array(".implode(', ', $exportedPaths)."),\n";

        }
<?php         if ($rootPackage->getTargetDir() && !empty($mainAutoload['psr-0'])) {

            $levels = substr_count($filesystem->normalizePath($rootPackage->getTargetDir()), '/') + 1;

            $prefixes = implode(', ', array_map(function ($prefix) {

                return var_export($prefix, true);

            }, array_keys($mainAutoload['psr-0'])));

            $baseDirFromTargetDirCode = $filesystem->findShortestPathCode($targetDir, $basePath, true);
<?php         $classMap['Composer\\InstalledVersions'] = "\$vendorDir . '/composer/InstalledVersions.php',\n";

        ksort($classMap);

        foreach ($classMap as $class => $code) {

            $classmapFile .= '    '.var_export($class, true).' => '.$code;

        }

        $classmapFile .= ");\n";
<?php     {

        $filesCode = '';

        foreach ($files as $fileIdentifier => $functionFile) {

            $filesCode .= '    ' . var_export($fileIdentifier, true) . ' => '

                . $this->getPathCode($filesystem, $basePath, $vendorPath, $functionFile) . ",\n";

        }
<?php             $baseDir = "'phar://' . " . $baseDir;

        }



        return $baseDir . var_export($path, true);

    }
<?php                         $match[1] = 'zend opcache';

                    }



                    $extension = var_export($match[1], true);

                    if ($match[1] === 'pcntl' || $match[1] === 'readline') {

                        $requiredExtensions[$extension] = "PHP_SAPI !== 'cli' || extension_loaded($extension) || \$missingExtensions[] = $extension;\n";

                    } else {
<?php         }



        if ($this->apcu) {

            $apcuPrefix = var_export(($this->apcuPrefix !== null ? $this->apcuPrefix : substr(base64_encode(md5(uniqid('', true), true)), 0, -3)), true);

            $file .= <<<APCU

        \$loader->setApcuPrefix($apcuPrefix);
<?php         $appBaseDirCode = ' => ' . $filesystem->findShortestPathCode(realpath($targetDir), $basePath, true, true) . " . '/";

        $appBaseDirPharCode = ' => \'phar://\' . ' . $filesystem->findShortestPathCode(realpath($targetDir), $basePath, true, true) . " . '/";



        $absoluteVendorPathCode = ' => ' . substr(var_export(rtrim($vendorDir, '\\/') . '/', true), 0, -1);

        $absoluteVendorPharPathCode = ' => ' . substr(var_export(rtrim('phar://' . $vendorDir, '\\/') . '/', true), 0, -1);

        $absoluteAppBaseDirCode = ' => ' . substr(var_export(rtrim($baseDir, '\\/') . '/', true), 0, -1);

        $absoluteAppBaseDirPharCode = ' => ' . substr(var_export(rtrim('phar://' . $baseDir, '\\/') . '/', true), 0, -1);
<?php         $appBaseDirPharCode = ' => \'phar://\' . ' . $filesystem->findShortestPathCode(realpath($targetDir), $basePath, true, true) . " . '/";



        $absoluteVendorPathCode = ' => ' . substr(var_export(rtrim($vendorDir, '\\/') . '/', true), 0, -1);

        $absoluteVendorPharPathCode = ' => ' . substr(var_export(rtrim('phar://' . $vendorDir, '\\/') . '/', true), 0, -1);

        $absoluteAppBaseDirCode = ' => ' . substr(var_export(rtrim($baseDir, '\\/') . '/', true), 0, -1);

        $absoluteAppBaseDirPharCode = ' => ' . substr(var_export(rtrim('phar://' . $baseDir, '\\/') . '/', true), 0, -1);
<?php         $absoluteVendorPathCode = ' => ' . substr(var_export(rtrim($vendorDir, '\\/') . '/', true), 0, -1);

        $absoluteVendorPharPathCode = ' => ' . substr(var_export(rtrim('phar://' . $vendorDir, '\\/') . '/', true), 0, -1);

        $absoluteAppBaseDirCode = ' => ' . substr(var_export(rtrim($baseDir, '\\/') . '/', true), 0, -1);

        $absoluteAppBaseDirPharCode = ' => ' . substr(var_export(rtrim('phar://' . $baseDir, '\\/') . '/', true), 0, -1);



        $initializer = '';
<?php         $absoluteVendorPathCode = ' => ' . substr(var_export(rtrim($vendorDir, '\\/') . '/', true), 0, -1);

        $absoluteVendorPharPathCode = ' => ' . substr(var_export(rtrim('phar://' . $vendorDir, '\\/') . '/', true), 0, -1);

        $absoluteAppBaseDirCode = ' => ' . substr(var_export(rtrim($baseDir, '\\/') . '/', true), 0, -1);

        $absoluteAppBaseDirPharCode = ' => ' . substr(var_export(rtrim('phar://' . $baseDir, '\\/') . '/', true), 0, -1);



        $initializer = '';

        $prefix = "\0Composer\Autoload\ClassLoader\0";
<?php         foreach ($maps as $prop => $value) {

            $value = strtr(

                var_export($value, true),

                array(

                    $absoluteVendorPathCode => $vendorPathCode,

                    $absoluteVendorPharPathCode => $vendorPharPathCode,
<?php             $maps = array_merge($maps, static::createMap($dir));

        }



        file_put_contents($file, sprintf('<?php return %s;', var_export($maps, true)));

    }
<?php             }



            if (is_bool($value)) {

                $value = var_export($value, true);

            }



            $source = '';