File tree Expand file tree Collapse file tree 5 files changed +72
-0
lines changed Expand file tree Collapse file tree 5 files changed +72
-0
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
10
+
11
+ [* .yml* ]
12
+ indent_size = 2
Original file line number Diff line number Diff line change
1
+ .editorconfig export-ignore
2
+ .gitattributes export-ignore
3
+ .gitignore export-ignore
4
+ .scrutinizer.yml export-ignore
5
+ .travis.yml export-ignore
6
+ CONTRIBUTING.md export-ignore
7
+ CONDUCT.md export-ignore
Original file line number Diff line number Diff line change
1
+ build /
2
+ vendor /
3
+ composer.lock
Original file line number Diff line number Diff line change
1
+ filter :
2
+ paths : [src/*]
3
+ checks :
4
+ php :
5
+ code_rating : true
6
+ duplication : true
7
+ tools :
8
+ external_code_coverage : true
9
+ php_code_sniffer :
10
+ config :
11
+ standard : " PSR2"
Original file line number Diff line number Diff line change
1
+ language : php
2
+
3
+ sudo : false
4
+
5
+ cache :
6
+ directories :
7
+ - $HOME/.composer/cache
8
+
9
+ php :
10
+ - 5.4
11
+ - 5.5
12
+ - 5.6
13
+ - 7.0
14
+ - hhvm
15
+
16
+ env :
17
+ global :
18
+ - TEST_COMMAND="composer test"
19
+
20
+ matrix :
21
+ allow_failures :
22
+ - php : 7.0
23
+ fast_finish : true
24
+ include :
25
+ - php : 5.4
26
+ env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
27
+
28
+ before_install :
29
+ - travis_retry composer self-update
30
+
31
+ install :
32
+ - travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
33
+
34
+ script :
35
+ - $TEST_COMMAND
36
+
37
+ after_success :
38
+ - if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
39
+ - if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
You can’t perform that action at this time.
0 commit comments