├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── composer.json ├── composer.lock ├── ruleset.xml ├── src ├── CompilerExtension.php ├── ConfigurableExtensionsExtension.php └── GroupedNeonAdapter.php └── tests ├── .gitignore ├── bootstrap.php ├── helpers ├── CommandsStack.php ├── CustomExtension1.php ├── CustomExtension2.php ├── CustomExtension3.php ├── CustomExtension4.php ├── Definition.php ├── ExtensionEmptyConfig.php ├── FakeLatteMacro.php ├── IService5Factory.php ├── Service1.php ├── Service2.php ├── Service3.php ├── Service4.php └── Service5.php ├── src ├── CompilerExtension.phpt ├── DeprecatedAddConfig.phpt ├── ExtensionsManipulation.phpt ├── GroupedNeonAdapterTest.phpt ├── ProvideConfigSources.phpt ├── UnknownExtensionParameter.phpt └── config.neon └── temp └── .gitignore /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/composer.lock -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/ruleset.xml -------------------------------------------------------------------------------- /src/CompilerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/src/CompilerExtension.php -------------------------------------------------------------------------------- /src/ConfigurableExtensionsExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/src/ConfigurableExtensionsExtension.php -------------------------------------------------------------------------------- /src/GroupedNeonAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/src/GroupedNeonAdapter.php -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/helpers/CommandsStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/tests/helpers/CommandsStack.php -------------------------------------------------------------------------------- /tests/helpers/CustomExtension1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/tests/helpers/CustomExtension1.php -------------------------------------------------------------------------------- /tests/helpers/CustomExtension2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/tests/helpers/CustomExtension2.php -------------------------------------------------------------------------------- /tests/helpers/CustomExtension3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/tests/helpers/CustomExtension3.php -------------------------------------------------------------------------------- /tests/helpers/CustomExtension4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtnzlml/compiler-extension/HEAD/tests/helpers/CustomExtension4.php -------------------------------------------------------------------------------- /tests/helpers/Definition.php: -------------------------------------------------------------------------------- 1 |