File tree Expand file tree Collapse file tree 6 files changed +13
-16
lines changed Expand file tree Collapse file tree 6 files changed +13
-16
lines changed Original file line number Diff line number Diff line change 11language : php
22
33php :
4- - 7.0
5- - 7.1
4+ - 7.2
5+ - 7.3
66
77env :
88 matrix :
@@ -14,4 +14,4 @@ before_script:
1414 - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
1515
1616script :
17- - phpunit --coverage-text --coverage-clover=coverage.clover
17+ - phpunit
Original file line number Diff line number Diff line change 22
33All notable changes to ` laravel-robots-middleware ` will be documented in this file
44
5+ ## 1.1.0 - 2019-09-04
6+
7+ - add support for Laravel 6
8+
59## 1.0.3 - 2016-01-12
610
711- Fixed a bug that would occur when a ` Symfony ` response got returned instead of an ` Illuminate ` response
Original file line number Diff line number Diff line change 1919 }
2020 ],
2121 "require" : {
22- "php" : " ^7.0 " ,
23- "illuminate/http" : " ^5.1 "
22+ "php" : " ^7.2 " ,
23+ "illuminate/http" : " ^5.8|^6.0 "
2424 },
2525 "require-dev" : {
26- "orchestra/testbench" : " ^3.2 " ,
27- "phpunit/phpunit" : " 4.* "
26+ "orchestra/testbench" : " ^3.8|^4.0 " ,
27+ "phpunit/phpunit" : " ^8.0 "
2828 },
2929 "autoload" : {
3030 "psr-4" : {
Original file line number Diff line number Diff line change 1919 <directory suffix =" .php" >src/</directory >
2020 </whitelist >
2121 </filter >
22- <logging >
23- <log type =" tap" target =" build/report.tap" />
24- <log type =" junit" target =" build/report.junit.xml" />
25- <log type =" coverage-html" target =" build/coverage" charset =" UTF-8" yui =" true" highlight =" true" />
26- <log type =" coverage-text" target =" build/coverage.txt" />
27- <log type =" coverage-clover" target =" build/logs/clover.xml" />
28- </logging >
2922</phpunit >
Original file line number Diff line number Diff line change 44
55class RobotsMiddlewareTest extends TestCase
66{
7- public function setUp ()
7+ public function setUp (): void
88 {
99 parent ::setUp ();
1010
Original file line number Diff line number Diff line change 99
1010class TestCase extends Orchestra
1111{
12- public function setUp ()
12+ public function setUp (): void
1313 {
1414 parent ::setUp ();
1515
You can’t perform that action at this time.
0 commit comments