├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── box.json ├── composer.json ├── composer.lock ├── phpunit.xml.dist ├── src └── Symfony │ └── Installer │ ├── AboutCommand.php │ ├── Application.php │ ├── DemoCommand.php │ ├── DownloadCommand.php │ ├── Exception │ └── AbortException.php │ ├── Manager │ └── ComposerManager.php │ ├── NewCommand.php │ └── SelfUpdateCommand.php ├── symfony └── tests └── Symfony └── Installer └── Tests ├── IntegrationTest.php └── Manager └── ComposerManagerTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/README.md -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Symfony/Installer/AboutCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/src/Symfony/Installer/AboutCommand.php -------------------------------------------------------------------------------- /src/Symfony/Installer/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/src/Symfony/Installer/Application.php -------------------------------------------------------------------------------- /src/Symfony/Installer/DemoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/src/Symfony/Installer/DemoCommand.php -------------------------------------------------------------------------------- /src/Symfony/Installer/DownloadCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/src/Symfony/Installer/DownloadCommand.php -------------------------------------------------------------------------------- /src/Symfony/Installer/Exception/AbortException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/src/Symfony/Installer/Exception/AbortException.php -------------------------------------------------------------------------------- /src/Symfony/Installer/Manager/ComposerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/src/Symfony/Installer/Manager/ComposerManager.php -------------------------------------------------------------------------------- /src/Symfony/Installer/NewCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/src/Symfony/Installer/NewCommand.php -------------------------------------------------------------------------------- /src/Symfony/Installer/SelfUpdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/src/Symfony/Installer/SelfUpdateCommand.php -------------------------------------------------------------------------------- /symfony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/symfony -------------------------------------------------------------------------------- /tests/Symfony/Installer/Tests/IntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/tests/Symfony/Installer/Tests/IntegrationTest.php -------------------------------------------------------------------------------- /tests/Symfony/Installer/Tests/Manager/ComposerManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/symfony-installer/HEAD/tests/Symfony/Installer/Tests/Manager/ComposerManagerTest.php --------------------------------------------------------------------------------