Created
January 31, 2019 16:08
-
-
Save barryvdh/7480cfab8a92e676d2e258161d6db449 to your computer and use it in GitHub Desktop.
Code Style
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"require-dev": { | |
"barryvdh/laravel-debugbar": "^3", | |
"barryvdh/laravel-ide-helper": "^2.4", | |
"filp/whoops": "~2.0", | |
"mockery/mockery": "^1.0", | |
"nikic/php-parser": "^4.0", | |
"nunomaduro/collision": "^1.0", | |
"phpro/grumphp": "^0.14.2", | |
"phpunit/phpunit": "~7.0", | |
"sensiolabs/security-checker": "^5.0", | |
"squizlabs/php_codesniffer": "^3.4" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parameters: | |
git_dir: . | |
bin_dir: vendor/bin | |
tasks: | |
phpparser: | |
ignore_patterns: ['_ide_helper.php'] | |
visitors: | |
no_exit_statements: ~ | |
forbidden_function_calls: | |
blacklist: ['var_dump', 'print_r', 'dump', 'dd', 'debug'] | |
phpcs: | |
standard: PSR2 | |
error_severity: 1 | |
warning_severity: 8 | |
ignore_patterns: | |
- _ide_helper.php | |
- resources/ | |
phpunit: | |
config_file: ~ | |
testsuite: ~ | |
group: [] | |
always_execute: false | |
securitychecker: | |
run_always: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment