├── .github ├── .kodiak.toml └── workflows │ ├── codesniffer.yml │ ├── coverage.yml │ ├── phpstan.yml │ └── tests.yml ├── LICENSE ├── composer.json └── src ├── ExtraConfigurator.php ├── PluggableConfigurator.php └── Plugin ├── ICompilerPlugin.php ├── IConfigurationPlugin.php ├── IContainerPlugin.php ├── IDebugCompilerPlugin.php ├── IDebugContainerPlugin.php └── IPlugin.php /.github/.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/.github/.kodiak.toml -------------------------------------------------------------------------------- /.github/workflows/codesniffer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/.github/workflows/codesniffer.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/composer.json -------------------------------------------------------------------------------- /src/ExtraConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/src/ExtraConfigurator.php -------------------------------------------------------------------------------- /src/PluggableConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/src/PluggableConfigurator.php -------------------------------------------------------------------------------- /src/Plugin/ICompilerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/src/Plugin/ICompilerPlugin.php -------------------------------------------------------------------------------- /src/Plugin/IConfigurationPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/src/Plugin/IConfigurationPlugin.php -------------------------------------------------------------------------------- /src/Plugin/IContainerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/src/Plugin/IContainerPlugin.php -------------------------------------------------------------------------------- /src/Plugin/IDebugCompilerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/src/Plugin/IDebugCompilerPlugin.php -------------------------------------------------------------------------------- /src/Plugin/IDebugContainerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/src/Plugin/IDebugContainerPlugin.php -------------------------------------------------------------------------------- /src/Plugin/IPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/bootstrap/HEAD/src/Plugin/IPlugin.php --------------------------------------------------------------------------------