diff --git a/.php_cs b/.php_cs index a414c04f..1c79e693 100644 --- a/.php_cs +++ b/.php_cs @@ -5,6 +5,7 @@ $config = new Symfony\CS\Config\Config(); $config->getFinder() ->exclude('data') ->exclude('puphpet') + ->name('*.php.dist') ->in(__DIR__) ; diff --git a/config/autoload/cache.local.php.dist b/config/autoload/cache.local.php.dist index c88c962e..1e0d9b5e 100644 --- a/config/autoload/cache.local.php.dist +++ b/config/autoload/cache.local.php.dist @@ -14,9 +14,9 @@ return [ ], 'plugins' => [ 'exception_handler' => ['throw_exceptions' => true], - 'serializer' - ] + 'serializer', + ], ], 'cache_key' => 'github_api', ], -]; \ No newline at end of file +]; diff --git a/config/autoload/github.local.php.dist b/config/autoload/github.local.php.dist index 8a7f92f7..4f1a9939 100644 --- a/config/autoload/github.local.php.dist +++ b/config/autoload/github.local.php.dist @@ -8,7 +8,7 @@ $settings = [ /** * Github Client id - * + * * Please specify the client id provided by github * * You can register a new application at: @@ -17,13 +17,13 @@ $settings = [ 'github_client_id' => '', /** * Github Secret - * + * * Please specify the secret provided by github * * You can register a new application at: * https://github.com/settings/applications/new */ - 'github_secret' =>'', + 'github_secret' => '', ]; /** diff --git a/config/development.config.php.dist b/config/development.config.php.dist index 382e1e3e..f1d11feb 100644 --- a/config/development.config.php.dist +++ b/config/development.config.php.dist @@ -12,6 +12,6 @@ return [ ], // development time configuration globbing 'module_listener_options' => [ - 'config_glob_paths' => ['config/autoload/{,*.}{global,local}-development.php'] - ] + 'config_glob_paths' => ['config/autoload/{,*.}{global,local}-development.php'], + ], ];