File tree Expand file tree Collapse file tree 4 files changed +21
-18
lines changed Expand file tree Collapse file tree 4 files changed +21
-18
lines changed Original file line number Diff line number Diff line change 1
- .editorconfig export-ignore
1
+ .editorconfig export-ignore
2
2
.gitattributes export-ignore
3
3
/.github / export-ignore
4
4
.gitignore export-ignore
5
- /.php_cs export-ignore
5
+ /.php_cs.dist export-ignore
6
6
/.scrutinizer.yml export-ignore
7
7
/.styleci.yml export-ignore
8
8
/.travis.yml export-ignore
9
- /behat.yml.dist export-ignore
10
- /features / export-ignore
11
9
/phpspec.ci.yml export-ignore
12
10
/phpspec.yml.dist export-ignore
13
11
/phpunit.xml.dist export-ignore
Original file line number Diff line number Diff line change 1
- /behat.yml
1
+ .php_cs
2
+ .php_cs.cache
2
3
/build /
3
4
/composer.lock
4
5
/phpspec.yml
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ $ config = PhpCsFixer \Config::create ()
4
+ ->setRiskyAllowed (true )
5
+ ->setRules ([
6
+ '@Symfony ' => true ,
7
+ 'array_syntax ' => ['syntax ' => 'short ' ],
8
+ 'single_line_throw ' => false ,
9
+ ])
10
+ ->setFinder (
11
+ PhpCsFixer \Finder::create ()
12
+ ->in (__DIR__ .'/src ' )
13
+ ->name ('*.php ' )
14
+ )
15
+ ;
16
+
17
+ return $ config ;
You can’t perform that action at this time.
0 commit comments