File tree Expand file tree Collapse file tree 3 files changed +13
-10
lines changed Expand file tree Collapse file tree 3 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ language: php
3
3
php :
4
4
- 7.0
5
5
- 7.1
6
+ - 7.2
6
7
7
8
before_script :
8
9
- travis_retry composer self-update
9
10
- travis_retry composer install --no-interaction --prefer-source --dev
10
11
11
12
script :
12
- - ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
13
+ - mkdir -p ./build/logs
14
+ - ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
13
15
14
- after_script :
15
- - php vendor/bin/coveralls
16
- - wget https://scrutinizer-ci.com/ocular.phar
17
- - php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml
16
+ after_success :
17
+ - travis_retry php vendor/bin/php-coveralls -v
Original file line number Diff line number Diff line change 28
28
"geocoder-php/geo-plugin-provider" : " ^4.0" ,
29
29
"geocoder-php/google-maps-provider" : " ^4.0" ,
30
30
"guzzlehttp/psr7" : " *" ,
31
- "illuminate/cache" : " 5.0.* || 5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* " ,
32
- "illuminate/support" : " 5.0.* || 5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* " ,
31
+ "illuminate/cache" : " 5.0 - 5.5 " ,
32
+ "illuminate/support" : " 5.0 - 5.5 " ,
33
33
"php" : " ^7.0" ,
34
34
"willdurand/geocoder" : " ^4.0"
35
35
},
36
36
"require-dev" : {
37
+ "codedungeon/phpunit-result-printer" : " ^0.4.4" ,
37
38
"doctrine/dbal" : " ^2.5" ,
38
39
"fzaninotto/faker" : " ~1.4" ,
39
40
"geocoder-php/bing-maps-provider" : " ^4.0" ,
40
41
"geocoder-php/maxmind-binary-provider" : " ^4.0" ,
41
42
"laravel/laravel" : " 5.5.*" ,
42
43
"mockery/mockery" : " 0.9.*" ,
44
+ "php-coveralls/php-coveralls" : " ^2.0" ,
43
45
"phpunit/phpunit" : " ~5.0" ,
44
- "satooshi/php-coveralls" : " dev-master@dev" ,
45
46
"sebastian/phpcpd" : " *"
46
47
},
47
48
"autoload" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
2
+ <phpunit
3
+ backupGlobals =" false"
3
4
backupStaticAttributes =" false"
5
+ bootstrap =" vendor/autoload.php"
4
6
colors =" true"
5
7
convertErrorsToExceptions =" true"
6
8
convertNoticesToExceptions =" true"
7
9
convertWarningsToExceptions =" true"
10
+ printerClass =" Codedungeon\PHPUnitPrettyResultPrinter\Printer"
8
11
processIsolation =" false"
9
12
stopOnFailure =" false"
10
13
syntaxCheck =" false"
11
- bootstrap =" vendor/autoload.php"
12
14
>
13
15
<testsuites >
14
16
<testsuite name =" Geocoder library for Laravel Test Suite" >
You can’t perform that action at this time.
0 commit comments