├── .gitignore ├── .php-cs-fixer.dist.php ├── LICENSE.md ├── README.md ├── ci4-install.php ├── ci4-update.php └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | .php-cs-fixer.cache 4 | composer.lock 5 | -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-composer-installer/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-composer-installer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-composer-installer/HEAD/README.md -------------------------------------------------------------------------------- /ci4-install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-composer-installer/HEAD/ci4-install.php -------------------------------------------------------------------------------- /ci4-update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-composer-installer/HEAD/ci4-update.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-composer-installer/HEAD/composer.json --------------------------------------------------------------------------------