diff --git a/.gitattributes b/.gitattributes index 1558f037..31c64b49 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,9 +1,14 @@ +* text=auto + +/.github export-ignore /_docs export-ignore /_screenshots export-ignore +/build export-ignore /tests export-ignore -/.editorconfig export-ignore -/.gitattributes export-ignore -/.gitignore export-ignore -/.scrutinizer.yml export-ignore -/.travis.yml export-ignore -/phpunit.xml export-ignore +.editorconfig export-ignore +.gitattributes export-ignore +.gitignore export-ignore +.scrutinizer.yml export-ignore +.travis.yml export-ignore +CONTRIBUTING.md export-ignore +phpunit.xml export-ignore diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000..71d76925 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,8 @@ +- LogViewer Version: #.#.# +- Laravel Version: #.#.# +- PHP Version: #.#.# + +### Description: + + +### Steps To Reproduce: diff --git a/.gitignore b/.gitignore index a5e94ac9..5e473144 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ /vendor/ composer.phar composer.lock +.DS_Store +Thumbs.db diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 0e2e5188..c12e6848 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -20,8 +20,8 @@ checks: tools: external_code_coverage: - timeout: 800 - runs: 8 + timeout: 900 + runs: 12 php_code_sniffer: enabled: true config: diff --git a/.travis.yml b/.travis.yml index a9832910..378d088e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,5 +28,5 @@ script: - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover after_script: - - if [ "$TRAVIS_PHP_VERSION" != "nightly" ] && [ "$TRAVIS_PHP_VERSION" != "7.1" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - - if [ "$TRAVIS_PHP_VERSION" != "nightly" ] && [ "$TRAVIS_PHP_VERSION" != "7.1" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi + - if [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi + - if [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi