We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee54c36 commit f6259cdCopy full SHA for f6259cd
src/Provider/Pelias/.gitattributes
@@ -0,0 +1,4 @@
1
+.gitattributes export-ignore
2
+.travis.yml export-ignore
3
+phpunit.xml.dist export-ignore
4
+Tests/ export-ignore
src/Provider/Pelias/.gitignore
@@ -0,0 +1,3 @@
+vendor/
+composer.lock
+phpunit.xml
src/Provider/Pelias/.travis.yml
@@ -0,0 +1,16 @@
+language: php
+sudo: false
+
+php: 7.2
5
6
7
+install:
8
+ - composer update --prefer-stable --prefer-dist
9
10
+script:
11
+ - composer test-ci
12
13
+after_success:
14
+ - wget https://scrutinizer-ci.com/ocular.phar
15
+ - php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml
16
0 commit comments