Skip to content
This repository was archived by the owner on Jun 29, 2021. It is now read-only.

Commit 6030ff0

Browse files
authored
Merge pull request #13 from ijpatricio/develop
Add Tags domain
2 parents 707173a + 3ce3905 commit 6030ff0

30 files changed

+841
-21719
lines changed

.php_cs.dist

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?php
2+
3+
return PhpCsFixer\Config::create()
4+
->setRules([
5+
'@PSR2' => true,
6+
'array_syntax' => ['syntax' => 'short'],
7+
'no_multiline_whitespace_before_semicolons' => true,
8+
'no_short_echo_tag' => true,
9+
'no_unused_imports' => true,
10+
'no_useless_else' => true,
11+
'ordered_imports' => [
12+
'sortAlgorithm' => 'alpha',
13+
],
14+
'phpdoc_indent' => true,
15+
'phpdoc_order' => true,
16+
'phpdoc_separation' => true,
17+
'phpdoc_single_line_var_spacing' => true,
18+
'phpdoc_trim' => true,
19+
'phpdoc_var_without_name' => true,
20+
'single_quote' => true,
21+
'ternary_operator_spaces' => true,
22+
'trailing_comma_in_multiline_array' => true,
23+
'trim_array_spaces' => true,
24+
])
25+
->setFinder(
26+
PhpCsFixer\Finder::create()
27+
->in(__DIR__)
28+
->exclude([
29+
'vendor',
30+
'storage',
31+
'node_modules',
32+
])
33+
->notName('README.md')
34+
->notName('*.xml')
35+
->notName('*.yml')
36+
->notName('_ide_helper.php')
37+
);

.phpstorm.meta.php

-1,277
This file was deleted.

0 commit comments

Comments
 (0)