Skip to content

Commit 7640df8

Browse files
author
Damien Debin
committed
Adds .gitattributes to ignore all test and documentation with “export-ignore”.
1 parent 1c6a877 commit 7640df8

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Ignore all test and documentation with “export-ignore”.
2+
.gitattributes export-ignore
3+
.gitignore export-ignore
4+
.idea export-ignore
5+
.php_cs export-ignore
6+
.travis.yml export-ignore
7+
README.md export-ignore
8+
phpunit.xml export-ignore
9+
/tests export-ignore
10+
/examples export-ignore

.idea/mc-google-visualization.iml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
language: php
2+
dist: trusty
23
cache:
34
directories:
45
- $HOME/.composer

composer.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,9 @@
4343
"platform": {
4444
"php": "5.4"
4545
}
46+
},
47+
"scripts": {
48+
"phpunit": "bin/phpunit",
49+
"phpstan": "phpstan analyse -l 5 lib tests examples"
4650
}
4751
}

0 commit comments

Comments
 (0)