File tree 5 files changed +55
-2
lines changed
5 files changed +55
-2
lines changed Original file line number Diff line number Diff line change
1
+ .editorconfig export-ignore
2
+ .gitattributes export-ignore
3
+ /.github / export-ignore
4
+ .gitignore export-ignore
5
+ /.php_cs export-ignore
6
+ /.scrutinizer.yml export-ignore
7
+ /.styleci.yml export-ignore
8
+ /.travis.yml export-ignore
9
+ /behat.yml.dist export-ignore
10
+ /features / export-ignore
11
+ /phpspec.ci.yml export-ignore
12
+ /phpspec.yml.dist export-ignore
13
+ /phpunit.xml.dist export-ignore
14
+ /spec / export-ignore
15
+ /Tests / export-ignore
Original file line number Diff line number Diff line change 1
- composer.lock
2
- vendor
1
+ /behat.yml
2
+ /build /
3
+ /composer.lock
4
+ /phpspec.yml
5
+ /phpunit.xml
6
+ /vendor /
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /*
4
+ * In order to make it work, fabpot/php-cs-fixer and sllh/php-cs-fixer-styleci-bridge must be installed globally
5
+ * with composer.
6
+ *
7
+ * @link https://github.com/Soullivaneuh/php-cs-fixer-styleci-bridge
8
+ * @link https://github.com/FriendsOfPHP/PHP-CS-Fixer
9
+ */
10
+
11
+ use SLLH \StyleCIBridge \ConfigBridge ;
12
+
13
+ return ConfigBridge::create ();
Original file line number Diff line number Diff line change
1
+ filter :
2
+ excluded_paths : [vendor/*, Tests/*]
3
+ checks :
4
+ php :
5
+ code_rating : true
6
+ duplication : true
7
+ tools :
8
+ external_code_coverage :
9
+ timeout : 1200 # Timeout in seconds.
Original file line number Diff line number Diff line change
1
+ preset : symfony
2
+
3
+ finder :
4
+ exclude :
5
+ - " Resources"
6
+ - " vendor"
7
+
8
+ enabled :
9
+ - short_array_syntax
10
+
11
+ disabled :
12
+ - phpdoc_annotation_without_dot # This is still buggy: https://github.com/symfony/symfony/pull/19198
You can’t perform that action at this time.
0 commit comments