Skip to content

Commit

Permalink
license added (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
stutzmann72 authored Sep 5, 2024
1 parent 172b9cd commit c9ad5ff
Show file tree
Hide file tree
Showing 2 changed files with 652 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php
$finder = (new PhpCsFixer\Finder())
->in(__DIR__)
->exclude('vendor')
;

return (new PhpCsFixer\Config())
->setRules([
'@PhpCsFixer' => true,
'@Symfony' => true,
'@Symfony:risky' => true,
'php_unit_test_class_requires_covers' => false,
])
->setRiskyAllowed(true)
->setFinder($finder)
;
Loading

0 comments on commit c9ad5ff

Please sign in to comment.