11 lines
285 B
PHP
11 lines
285 B
PHP
|
<?php
|
||
|
include dirname(__DIR__) . '/vendor/autoload.php';
|
||
|
|
||
|
$PHP_CODESNIFFER_CONFIG_DATA = array(
|
||
|
'installed_paths' => dirname(__DIR__) . '/src',
|
||
|
'default_standard' => 'Gamegos',
|
||
|
'php_path' => 'php',
|
||
|
'report_width' => 80
|
||
|
);
|
||
|
|
||
|
return new PHP_CodeSniffer_CLI();
|