Benjamin Renard
6fdc5447f1
* Code cleaning and fix some small errors using Phpstan * Configure pre-commit to run Phpstan before each commit * Some little improvments and logging, mail, smarty & URL libs * Add Sentry integration * Add Webstat JS code inclusion * Install Smarty dependency using composer Breaking changes: * Rename Event class as HookEvent to avoid conflict with PECL event * URL with refresh GET parameter now automatically trigger redirection without it after page loading to avoid to keep it in URL
9 lines
277 B
YAML
9 lines
277 B
YAML
# Pre-commit hooks to run tests and ensure code is cleaned.
|
|
# See https://pre-commit.com for more information
|
|
repos:
|
|
- repo: https://github.com/digitalpulp/pre-commit-php.git
|
|
rev: 1.4.0
|
|
hooks:
|
|
- id: php-stan
|
|
files: \.(php)$
|
|
args: ['--configuration=phpstan.neon']
|