├── .github └── workflows │ └── php.yml ├── .gitignore ├── LICENSE.txt ├── LICENSE_AFL.txt ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── ConsoleArrayInputFactory.php ├── InfoCommand.php ├── MagentoComposerApplication.php └── RequireUpdateDryRunCommand.php └── tests └── Composer ├── ConsoleArrayInputFactoryTest.php ├── InfoCommandTest.php ├── MagentoComposerApplicationTest.php └── RequireUpdateDryRunCommandTest.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/LICENSE_AFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/ConsoleArrayInputFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/src/ConsoleArrayInputFactory.php -------------------------------------------------------------------------------- /src/InfoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/src/InfoCommand.php -------------------------------------------------------------------------------- /src/MagentoComposerApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/src/MagentoComposerApplication.php -------------------------------------------------------------------------------- /src/RequireUpdateDryRunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/src/RequireUpdateDryRunCommand.php -------------------------------------------------------------------------------- /tests/Composer/ConsoleArrayInputFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/tests/Composer/ConsoleArrayInputFactoryTest.php -------------------------------------------------------------------------------- /tests/Composer/InfoCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/tests/Composer/InfoCommandTest.php -------------------------------------------------------------------------------- /tests/Composer/MagentoComposerApplicationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/tests/Composer/MagentoComposerApplicationTest.php -------------------------------------------------------------------------------- /tests/Composer/RequireUpdateDryRunCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/composer/HEAD/tests/Composer/RequireUpdateDryRunCommandTest.php --------------------------------------------------------------------------------