├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Composer │ └── Installer │ │ └── CodeigniterInstaller.php └── bootstrap.php └── tests ├── Composer └── Installers │ └── Test │ ├── CodeigniterInstallerTest.php │ └── TestCase.php └── bootstrap.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compwright/codeigniter-installers/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compwright/codeigniter-installers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compwright/codeigniter-installers/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compwright/codeigniter-installers/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compwright/codeigniter-installers/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Composer/Installer/CodeigniterInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compwright/codeigniter-installers/HEAD/src/Composer/Installer/CodeigniterInstaller.php -------------------------------------------------------------------------------- /src/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compwright/codeigniter-installers/HEAD/src/bootstrap.php -------------------------------------------------------------------------------- /tests/Composer/Installers/Test/CodeigniterInstallerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compwright/codeigniter-installers/HEAD/tests/Composer/Installers/Test/CodeigniterInstallerTest.php -------------------------------------------------------------------------------- /tests/Composer/Installers/Test/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compwright/codeigniter-installers/HEAD/tests/Composer/Installers/Test/TestCase.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compwright/codeigniter-installers/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------