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 0dea020
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Expand Up @@ -12,14 +12,12 @@ env:
- SYMFONY_PHPUNIT_DIR=$HOME/.phpunit-bridge
- SYMFONY_PHPUNIT_REMOVE='' # don't remove prophecy

php: [7.2, 7.1, 7.0, 5.6, 5.5, 5.4]
php: [7.2, 7.1]

matrix:
include:
- php: 7.2
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
- php: 5.3
dist: precise
- php: 7.2
env: STABILITY=dev

Expand Down
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 0dea020

Please sign in to comment.