File tree Expand file tree Collapse file tree 4 files changed +59
-0
lines changed Expand file tree Collapse file tree 4 files changed +59
-0
lines changed Original file line number Diff line number Diff line change 1+ ; This file is for unifying the coding style for different editors and IDEs.
2+ ; More information at https://editorconfig.org
3+
4+ root = true
5+
6+ [* ]
7+ charset = utf-8
8+ indent_size = 4
9+ indent_style = space
10+ end_of_line = lf
11+ insert_final_newline = true
12+ trim_trailing_whitespace = true
13+
14+ [* .md ]
15+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change 1+ # Path-based git attributes
2+ # https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
3+
4+ # Ignore all test and documentation with "export-ignore".
5+ /.editorconfig export-ignore
6+ /.gitattributes export-ignore
7+ /.gitignore export-ignore
8+ /.styleci.yml export-ignore
9+ /.scrutinizer.yml export-ignore
10+ /.travis.yml export-ignore
11+ /phpunit.xml.dist export-ignore
12+ /tests export-ignore
Original file line number Diff line number Diff line change 1+ preset : laravel
Original file line number Diff line number Diff line change 1+ sudo : required
2+
3+ language : php
4+
5+ php :
6+ - 5.4
7+ - 5.5
8+ - 5.6
9+ - 7.0
10+ - 7.1
11+ - 7.2
12+ - 7.3
13+ - 7.4
14+
15+ env :
16+ matrix :
17+ - COMPOSER_FLAGS="--prefer-lowest"
18+ - COMPOSER_FLAGS=""
19+
20+ before_install :
21+ - travis_retry composer self-update
22+
23+ install :
24+ - travis_retry composer update --prefer-source $COMPOSER_FLAGS
25+
26+ script :
27+ - phpunit
28+
29+ branches :
30+ only :
31+ - master
You can’t perform that action at this time.
0 commit comments