File tree 4 files changed +9
-10
lines changed
4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
3
php :
4
- - 5.6
5
- - 7.0
6
- - 7.1
7
4
- 7.2
5
+ - 7.3
6
+ - 7.4
8
7
- nightly
9
8
10
9
matrix :
@@ -20,4 +19,4 @@ before_script:
20
19
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
21
20
22
21
script :
23
- - vendor/bin/phpunit
22
+ - vendor/bin/phpunit --no-coverage
Original file line number Diff line number Diff line change 15
15
}
16
16
],
17
17
"require" : {
18
- "composer/composer" : " ~ 1.4"
18
+ "composer/composer" : " >= 1.4"
19
19
},
20
20
"require-dev" : {
21
- "orchestra/testbench" : " ~ 3.0" ,
22
- "phpunit/phpunit" : " ^6.2|^ 5.6"
21
+ "orchestra/testbench" : " >= 3.0" ,
22
+ "phpunit/phpunit" : " >= 5.6"
23
23
},
24
24
"autoload" : {
25
25
"psr-4" : {
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class HooksTest extends TestCase
14
14
{
15
15
const COMPOSER_REPOSITORY = 'https://testing.larapack.io ' ;
16
16
17
- public function setUp ()
17
+ public function setUp (): void
18
18
{
19
19
// Set Hooks environment
20
20
Hooks::setMemoryLimit ('5G ' );
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ protected function getPackageProviders($app)
16
16
/**
17
17
* Setup the test environment.
18
18
*/
19
- public function setUp ()
19
+ public function setUp (): void
20
20
{
21
21
parent ::setUp ();
22
22
@@ -65,7 +65,7 @@ public function setUp()
65
65
$ this ->artisan ('migrate ' );
66
66
}
67
67
68
- public function tearDown ()
68
+ public function tearDown (): void
69
69
{
70
70
// Cleanup old hooks before testing
71
71
app (Filesystem::class)->deleteDirectory (base_path ('hooks ' ));
You can’t perform that action at this time.
0 commit comments