Skip to content

Commit

Permalink
Bumped Symfony version
Browse files Browse the repository at this point in the history
  • Loading branch information
DonCallisto committed Nov 24, 2019
1 parent 933c45a commit 20e8d8c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Tests/ProcessorTest.php
Expand Up @@ -17,15 +17,15 @@ class ProcessorTest extends TestCase
*/
private $processor;

protected function setUp()
protected function setUp(): void
{
parent::setUp();

$this->io = $this->prophesize('Composer\IO\IOInterface');
$this->processor = new Processor($this->io->reveal());
}

protected function tearDown()
protected function tearDown(): void
{
parent::tearDown();

Expand Down
2 changes: 1 addition & 1 deletion Tests/ScriptHandlerTest.php
Expand Up @@ -11,7 +11,7 @@ class ScriptHandlerTest extends TestCase
private $io;
private $package;

protected function setUp()
protected function setUp(): void
{
parent::setUp();

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Expand Up @@ -11,13 +11,13 @@
}
],
"require": {
"php": ">=5.3.3",
"symfony/yaml": "^2.3 || ^3.0 || ^4.0"
"php": ">=7.1",
"symfony/yaml": "^3.4 || ^4.2"
},
"require-dev": {
"composer/composer": "^1.0@dev",
"symfony/filesystem": "^2.3 || ^3 || ^4",
"symfony/phpunit-bridge": "^4.0"
"symfony/filesystem": "^3.4 || ^4.2",
"symfony/phpunit-bridge": "^4.2"
},
"autoload": {
"psr-4": { "Incenteev\\ParameterHandler\\": "" }
Expand Down

0 comments on commit 20e8d8c

Please sign in to comment.