├── LICENSE ├── README.md ├── bin └── crossplane ├── composer.json ├── logo.svg └── src ├── Analyzer.php ├── Builder.php ├── Console ├── Application.php ├── Command │ ├── BuildCommand.php │ ├── FormatCommand.php │ ├── LexCommand.php │ ├── MinifyCommand.php │ └── ParseCommand.php └── Output │ └── FileOutput.php ├── Crossplane.php ├── Exception ├── LuaBlockParserSyntaxException.php ├── NgxParserDirectiveArgumentsException.php ├── NgxParserDirectiveContextException.php ├── NgxParserDirectiveException.php ├── NgxParserDirectiveUnknownException.php ├── NgxParserException.php ├── NgxParserIOException.php └── NgxParserSyntaxException.php ├── Ext ├── CrossplaneExtension.php └── LuaBlockPlugin.php ├── Formatter.php ├── Lexer.php ├── Parser.php └── Util ├── EmplaceIterator.php ├── FileUtil.php ├── JsonFormatter.php └── StringUtil.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/README.md -------------------------------------------------------------------------------- /bin/crossplane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/bin/crossplane -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/composer.json -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/logo.svg -------------------------------------------------------------------------------- /src/Analyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Analyzer.php -------------------------------------------------------------------------------- /src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Builder.php -------------------------------------------------------------------------------- /src/Console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Console/Application.php -------------------------------------------------------------------------------- /src/Console/Command/BuildCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Console/Command/BuildCommand.php -------------------------------------------------------------------------------- /src/Console/Command/FormatCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Console/Command/FormatCommand.php -------------------------------------------------------------------------------- /src/Console/Command/LexCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Console/Command/LexCommand.php -------------------------------------------------------------------------------- /src/Console/Command/MinifyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Console/Command/MinifyCommand.php -------------------------------------------------------------------------------- /src/Console/Command/ParseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Console/Command/ParseCommand.php -------------------------------------------------------------------------------- /src/Console/Output/FileOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Console/Output/FileOutput.php -------------------------------------------------------------------------------- /src/Crossplane.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Crossplane.php -------------------------------------------------------------------------------- /src/Exception/LuaBlockParserSyntaxException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Exception/LuaBlockParserSyntaxException.php -------------------------------------------------------------------------------- /src/Exception/NgxParserDirectiveArgumentsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Exception/NgxParserDirectiveArgumentsException.php -------------------------------------------------------------------------------- /src/Exception/NgxParserDirectiveContextException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Exception/NgxParserDirectiveContextException.php -------------------------------------------------------------------------------- /src/Exception/NgxParserDirectiveException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Exception/NgxParserDirectiveException.php -------------------------------------------------------------------------------- /src/Exception/NgxParserDirectiveUnknownException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Exception/NgxParserDirectiveUnknownException.php -------------------------------------------------------------------------------- /src/Exception/NgxParserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Exception/NgxParserException.php -------------------------------------------------------------------------------- /src/Exception/NgxParserIOException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Exception/NgxParserIOException.php -------------------------------------------------------------------------------- /src/Exception/NgxParserSyntaxException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Exception/NgxParserSyntaxException.php -------------------------------------------------------------------------------- /src/Ext/CrossplaneExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Ext/CrossplaneExtension.php -------------------------------------------------------------------------------- /src/Ext/LuaBlockPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Ext/LuaBlockPlugin.php -------------------------------------------------------------------------------- /src/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Formatter.php -------------------------------------------------------------------------------- /src/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Lexer.php -------------------------------------------------------------------------------- /src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Parser.php -------------------------------------------------------------------------------- /src/Util/EmplaceIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Util/EmplaceIterator.php -------------------------------------------------------------------------------- /src/Util/FileUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Util/FileUtil.php -------------------------------------------------------------------------------- /src/Util/JsonFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Util/JsonFormatter.php -------------------------------------------------------------------------------- /src/Util/StringUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ne-Lexa/php-crossplane/HEAD/src/Util/StringUtil.php --------------------------------------------------------------------------------