File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,10 @@ jobs:
1111 fail-fast : false
1212 matrix :
1313 php-versions :
14- - " 7.0"
15- - " 7.1"
1614 - " 7.2"
1715 - " 7.3"
1816 - " 7.4"
17+ - " 8.0"
1918 composer-versions :
2019 - " v1"
2120 - " v2"
Original file line number Diff line number Diff line change 3838 "netresearch/composer-installers" : " *"
3939 },
4040 "require" : {
41- "php" : " >=7.0.0 <7.5 " ,
41+ "php" : " ^7.2 || ^8.0 " ,
4242 "composer-plugin-api" : " ^1.0.0 || ^2.0.0"
4343 },
4444 "require-dev" : {
4545 "composer/composer" : " 1.2.*@dev || 2.0.*@dev" ,
4646 "overtrue/phplint" : " ^2.0" ,
47- "phpunit/phpunit" : " ^6 .5"
47+ "phpunit/phpunit" : " ^8 .5"
4848 },
4949 "conflict" : {
5050 "composer/installers" : " <1.0.24 || >1.0.24"
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ class InstallerTestCase extends TestCase
6262 */
6363 protected $ io ;
6464
65- protected function setUp ()
65+ protected function setUp (): void
6666 {
6767 $ this ->previousDirectory = getcwd ();
6868 $ this ->rootDirectory = TestCase::getUniqueTmpDirectory ();
@@ -87,7 +87,7 @@ protected function setUp()
8787 $ this ->io = $ this ->createMock (IOInterface::class);
8888 }
8989
90- protected function tearDown ()
90+ protected function tearDown (): void
9191 {
9292 chdir ($ this ->previousDirectory );
9393 if (is_dir ($ this ->rootDirectory )) {
You can’t perform that action at this time.
0 commit comments