File tree 2 files changed +15
-8
lines changed
2 files changed +15
-8
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 9
9
}
10
10
],
11
11
"require" : {
12
- "php" : " >=7.0.0" ,
13
12
"illuminate/cache" : " 5.5.*" ,
14
- "illuminate/database" : " 5.5.*"
13
+ "illuminate/database" : " 5.5.*" ,
14
+ "php" : " >=7.0.0"
15
15
},
16
16
"require-dev" : {
17
17
"codedungeon/phpunit-result-printer" : " ^0.4.4" ,
20
20
"mockery/mockery" : " 0.9.*" ,
21
21
"phpmd/phpmd" : " ^2.6" ,
22
22
"phpunit/phpunit" : " 5.7.*" ,
23
- "satooshi /php-coveralls" : " *" ,
23
+ "php-coveralls /php-coveralls" : " *" ,
24
24
"sebastian/phpcpd" : " *"
25
25
},
26
26
"autoload" : {
35
35
"psr-4" : {
36
36
"GeneaLabs\\ LaravelModelCaching\\ Tests\\ " : " tests/"
37
37
}
38
+ },
39
+ "extra" : {
40
+ "laravel" : {
41
+ "providers" : [
42
+ " GeneaLabs\\ LaravelModelCaching\\ Providers\\ Service"
43
+ ]
44
+ }
38
45
}
39
46
}
You can’t perform that action at this time.
0 commit comments