Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
42 additions
and 0 deletions.
- +13 −0 .editorconfig
- +15 −0 .gitattributes
- +7 −0 .gitignore
- +7 −0 .travis.yml
@@ -0,0 +1,13 @@ | ||
# editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
indent_size = 4 | ||
trim_trailing_whitespace = false |
@@ -0,0 +1,15 @@ | ||
* text=auto | ||
|
||
.editorconfig text | ||
.gitattributes text | ||
.gitignore text | ||
.travis.yml text | ||
|
||
*.json text | ||
*.md text | ||
*.php text diff=php | ||
*.txt text | ||
*.xml text | ||
|
||
*.ico binary | ||
*.png binary |
@@ -0,0 +1,7 @@ | ||
/.idea/ | ||
/*.iml | ||
/**/.DS_Store | ||
/composer.lock | ||
/doc/api/ | ||
/var/ | ||
/vendor/ |
@@ -0,0 +1,7 @@ | ||
language: php | ||
php: '7.0' | ||
sudo: false | ||
|
||
install: composer install --no-interaction | ||
script: vendor/bin/phpunit | ||
after_script: vendor/bin/codacycoverage clover var/coverage.xml |