File tree Expand file tree Collapse file tree 7 files changed +83
-5
lines changed Expand file tree Collapse file tree 7 files changed +83
-5
lines changed Original file line number Diff line number Diff line change 1+ root = true
2+
3+ [* ]
4+ charset = utf-8
5+ end_of_line = lf
6+ indent_size = 4
7+ indent_style = space
8+ insert_final_newline = true
9+ trim_trailing_whitespace = true
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+ /phpunit.xml.dist export-ignore
12+ /Tests / export-ignore
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 : true
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
Original file line number Diff line number Diff line change 1+ language : php
2+
3+ cache :
4+ directories :
5+ - $HOME/.composer/cache
6+
7+ branches :
8+ except :
9+ - /^analysis-.*$/
10+ - /^patch-.*$/
11+
12+ php :
13+ - 5.5
14+ - 5.6
15+ - 7.0
16+ - 7.1
17+ - hhvm
18+ env :
19+ global :
20+ - TEST_COMMAND="composer test"
21+ matrix :
22+ - SYMFONY_VERSION=3.2.*
23+ - SYMFONY_VERSION=2.7.*
24+
25+ install :
26+ - travis_retry composer update --prefer-dist --no-interaction
27+
28+ script :
29+ - $TEST_COMMAND
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments