efabrica / latte-syntax-checker
Compiles latte files and checks syntax of generated php files
Installs: 1 246
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 2
Requires
- php: >= 7.1.0
- latte/latte: ^2.4
- nette/application: ^2.4 | ^3.0
- nette/bootstrap: ^2.4 | ^3.0
- nette/di: ^2.4 | ^3.0
- nette/forms: ^2.4 | ^3.0
- nette/robot-loader: ^2.4 | ^3.0
- nette/utils: ^2.4 | ^3.0
- overtrue/phplint: ^1.1
- symfony/console: ^4.2 | ^5.0
README
This library helps to find erros in latte template files, it can be used in CI tools.
Usage
latte-syntax-checker check [-b|--bootstrap BOOTSTRAP] [-c|--compiled-dir COMPILED-DIR] [--] <dirs>...
For more information, run latte-syntax-checker check check --help
The result looks like:
Errors found: 1
With verbose output you will get:
Errors found: 1
Error: Unknown macro {unknownmacro} in .../Test/default.latte:4
/var/www/test/app/Presenters/templates/Test/default.latte:4
And with very verbose there will be also part of file content with error.
Return code is count of errors found, so you can use it in CI tools.
echo $?
1
Installation
Latte syntax checker requires PHP 7.1.0 or newer. You can install it via Composer. This project is not meant to be run as a dependency, so install it globally:
composer global require efabrica/latte-syntax-checker