We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24f02af commit df4e688Copy full SHA for df4e688
.gitattributes
@@ -2,9 +2,11 @@
2
.gitignore export-ignore
3
4
.travis.yml export-ignore
5
+.scrutinizer.yml export-ignore
6
build.xml export-ignore
-dist.phpunit.xml export-ignore
7
+phpunit.xml.dist export-ignore
8
phpdox.xml export-ignore
9
10
/tests export-ignore
11
/examples export-ignore
12
+
.scrutinizer.yml
@@ -0,0 +1,8 @@
1
+imports:
+ - php
+filter:
+ paths: [src/*]
+tools:
+ php_code_coverage: true
+before_commands:
+ - "composer install --prefer-source"
.travis.yml
@@ -7,4 +7,4 @@ php:
install: composer install
-script: phpunit --configuration dist.phpunit.xml
+script: phpunit --configuration phpunit.xml.dist
dist.phpunit.xml phpunit.xml.distdist.phpunit.xml renamed to phpunit.xml.dist
0 commit comments