mirror of
https://github.com/stan220/testcontainers-php.git
synced 2026-09-08 18:29:47 +00:00
18 lines
473 B
PHP
18 lines
473 B
PHP
<?php
|
|
/*
|
|
* This document has been generated with
|
|
* https://mlocati.github.io/php-cs-fixer-configurator/#version:3.12.0|configurator
|
|
* you can change this configuration by importing this file.
|
|
*/
|
|
$config = new \PhpCsFixer\Config();
|
|
return $config
|
|
->setRules([
|
|
'@PSR12' => true,
|
|
'@PHP81Migration' => true,
|
|
'no_unused_imports' => true,
|
|
])
|
|
->setFinder(PhpCsFixer\Finder::create()
|
|
->exclude('vendor')
|
|
->in(__DIR__)
|
|
)
|
|
; |