Skip to content

Commit

Permalink
Merge branch 'master' into feature/rtf_to_pdf
Browse files Browse the repository at this point in the history
  • Loading branch information
ncjoes authored May 11, 2020
2 parents 58b013b + a163442 commit ef2e10f
Show file tree
Hide file tree
Showing 5 changed files with 1,609 additions and 226 deletions.
12 changes: 12 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'array_syntax' => ['syntax' => 'short'],
'ordered_imports' => [
'imports_order' => ['class', 'const', 'function'],
'sort_algorithm' => 'alpha',
],
])
;
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"php" : ">=5.4.4"
},
"require-dev" : {
"phpunit/phpunit": "7.*"
"phpunit/phpunit": "7.*",
"phpstan/phpstan": "^0.12.11",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload" : {
"psr-4" : {
Expand Down
Loading

0 comments on commit ef2e10f

Please sign in to comment.