Skip to content

Commit

Permalink
Bump dependencies (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry committed Mar 25, 2020
1 parent 146e91c commit 4032893
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Expand Up @@ -9,19 +9,19 @@ branches:
- master

php:
- '7.2'
- nightly
- '7.3'
- '7.4'

matrix:
fast_finish: true
include:
- php: '7.2'
- php: '7.3'
env:
- COMPOSER_FLAGS='--prefer-lowest'
- SYMFONY_VERSION='~4.4.0'
- php: '7.2'
- php: '7.3'
env: SYMFONY_VERSION='~4.4.0'
- php: '7.2'
- php: '7.3'
env: SYMFONY_VERSION='^5.0'
allow_failures:
- php: nightly
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Expand Up @@ -17,15 +17,15 @@
],

"require": {
"php": "^7.2",
"psy/psysh": "^0.8|^0.9|^0.10",
"symfony/error-handler": "^4.4|^5.0",
"symfony/expression-language": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0"
"php": "^7.3",
"psy/psysh": "^0.10",
"symfony/error-handler": "^5.0|^4.4",
"symfony/expression-language": "^5.0|^4.4",
"symfony/framework-bundle": "^5.0|^4.4"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"symfony/symfony": "^4.4|^5.0"
"phpunit/phpunit": "^8.0",
"symfony/symfony": "^5.0|^4.4"
},

"autoload": {
Expand Down
7 changes: 3 additions & 4 deletions src/Command/PsyshCommand.php
Expand Up @@ -42,15 +42,14 @@ public function __construct(Shell $shell)
*/
protected function configure()
{
$this
->setDescription('Start PsySH for Symfony');
$this->setDescription('Start PsySH for Symfony');
}

/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
return $this->shell->run();
return (int) $this->shell->run();
}
}

0 comments on commit 4032893

Please sign in to comment.