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

Software: Apache/2.4.68 (Linux) PHP/7.4.33. PHP/7.4.33 

uname -a: Linux bjb2293782.nichost.ru 6.6.151-1.el8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Aug 10
11:16:02 MSK 2026 x86_64
 

uid=12584(bjb2293782) gid=12584(bjb2293782) groups=12584(bjb2293782)  

Safe-mode: OFF (not secure)

/usr/share/php/Composer/Command/   drwxr-xr-x
Free 59.97 GB of 99.95 GB (60%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     OutdatedCommand.php (5.43 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);

/*
 * This file is part of Composer.
 *
 * (c) Nils Adermann <naderman@naderman.de>
 *     Jordi Boggiano <j.boggiano@seld.be>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Composer\Command;

use 
Symfony\Component\Console\Input\InputInterface;
use 
Composer\Console\Input\InputArgument;
use 
Symfony\Component\Console\Input\ArrayInput;
use 
Composer\Console\Input\InputOption;
use 
Symfony\Component\Console\Output\OutputInterface;

/**
 * @author Jordi Boggiano <j.boggiano@seld.be>
 */
class OutdatedCommand extends BaseCommand
{
    use 
CompletionTrait;

    protected function 
configure(): void
    
{
        
$this
            
->setName('outdated')
            ->
setDescription('Shows a list of installed packages that have updates available, including their latest version')
            ->
setDefinition([
                new 
InputArgument('package'InputArgument::OPTIONAL'Package to inspect. Or a name including a wildcard (*) to filter lists of packages instead.'null$this->suggestInstalledPackage(false)),
                new 
InputOption('outdated''o'InputOption::VALUE_NONE'Show only packages that are outdated (this is the default, but present here for compat with `show`'),
                new 
InputOption('all''a'InputOption::VALUE_NONE'Show all installed packages with their latest versions'),
                new 
InputOption('locked'nullInputOption::VALUE_NONE'Shows updates for packages from the lock file, regardless of what is currently in vendor dir'),
                new 
InputOption('direct''D'InputOption::VALUE_NONE'Shows only packages that are directly required by the root package'),
                new 
InputOption('strict'nullInputOption::VALUE_NONE'Return a non-zero exit code when there are outdated packages'),
                new 
InputOption('major-only''M'InputOption::VALUE_NONE'Show only packages that have major SemVer-compatible updates.'),
                new 
InputOption('minor-only''m'InputOption::VALUE_NONE'Show only packages that have minor SemVer-compatible updates.'),
                new 
InputOption('patch-only''p'InputOption::VALUE_NONE'Show only packages that have patch SemVer-compatible updates.'),
                new 
InputOption('format''f'InputOption::VALUE_REQUIRED'Format of the output: text or json''text', ['json''text']),
                new 
InputOption('ignore'nullInputOption::VALUE_REQUIRED InputOption::VALUE_IS_ARRAY'Ignore specified package(s). Use it if you don\'t want to be informed about new versions of some packages.'null$this->suggestInstalledPackage(false)),
                new 
InputOption('no-dev'nullInputOption::VALUE_NONE'Disables search in require-dev packages.'),
                new 
InputOption('ignore-platform-req'nullInputOption::VALUE_REQUIRED InputOption::VALUE_IS_ARRAY'Ignore a specific platform requirement (php & ext- packages). Use with the --outdated option'),
                new 
InputOption('ignore-platform-reqs'nullInputOption::VALUE_NONE'Ignore all platform requirements (php & ext- packages). Use with the --outdated option'),
            ])
            ->
setHelp(
                <<<EOT
The outdated command is just a proxy for `composer show -l`

The color coding (or signage if you have ANSI colors disabled) for dependency versions is as such:

- <info>green</info> (=): Dependency is in the latest version and is up to date.
- <comment>yellow</comment> (~): Dependency has a new version available that includes backwards
  compatibility breaks according to semver, so upgrade when you can but it
  may involve work.
- <highlight>red</highlight> (!): Dependency has a new version that is semver-compatible and you should upgrade it.

Read more at https://getcomposer.org/doc/03-cli.md#outdated
EOT
            )
        ;
    }

    protected function 
execute(InputInterface $inputOutputInterface $output): int
    
{
        
$args = [
            
'command' => 'show',
            
'--latest' => true,
        ];
        if (!
$input->getOption('all')) {
            
$args['--outdated'] = true;
        }
        if (
$input->getOption('direct')) {
            
$args['--direct'] = true;
        }
        if (
null !== $input->getArgument('package')) {
            
$args['package'] = $input->getArgument('package');
        }
        if (
$input->getOption('strict')) {
            
$args['--strict'] = true;
        }
        if (
$input->getOption('major-only')) {
            
$args['--major-only'] = true;
        }
        if (
$input->getOption('minor-only')) {
            
$args['--minor-only'] = true;
        }
        if (
$input->getOption('patch-only')) {
            
$args['--patch-only'] = true;
        }
        if (
$input->getOption('locked')) {
            
$args['--locked'] = true;
        }
        if (
$input->getOption('no-dev')) {
            
$args['--no-dev'] = true;
        }
        
$args['--ignore-platform-req'] = $input->getOption('ignore-platform-req');
        if (
$input->getOption('ignore-platform-reqs')) {
            
$args['--ignore-platform-reqs'] = true;
        }
        
$args['--format'] = $input->getOption('format');
        
$args['--ignore'] = $input->getOption('ignore');

        
$input = new ArrayInput($args);

        return 
$this->getApplication()->run($input$output);
    }

    
/**
     * @inheritDoc
     */
    
public function isProxyCommand(): bool
    
{
        return 
true;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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