Skip to content

Commit 1af6ef6

Browse files
committed
Merge pull request #39 from phpcr/composer_update
Stabalizing dependencies
2 parents b3ed4a2 + 481112f commit 1af6ef6

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

composer.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22
"name": "phpcr/phpcr-shell",
33
"description": "Shell for PHPCR",
44
"require": {
5-
"symfony/console": "2.3.*",
6-
"jackalope/jackalope-doctrine-dbal": "dev-master",
7-
"jackalope/jackalope-jackrabbit": "dev-master",
8-
"jackalope/jackalope": "dev-master",
9-
"phpcr/phpcr": "dev-master",
10-
"phpcr/phpcr-utils": "dev-master",
11-
"symfony/finder": "~2.0"
5+
"symfony/console": "~2.3",
6+
"jackalope/jackalope-doctrine-dbal": "~1.1",
7+
"jackalope/jackalope-jackrabbit": "~1.1",
8+
"jackalope/jackalope": "~1.1",
9+
"phpcr/phpcr": "~2.1",
10+
"phpcr/phpcr-utils": "~1.2",
11+
"symfony/finder": "~2.3"
1212
},
13+
"minimum-stability": "dev",
1314
"require-dev": {
1415
"mockery/mockery": "0.9",
15-
"symfony/process": "2.3.*",
16-
"symfony/filesystem": "2.3.*",
16+
"symfony/process": "~2.3",
17+
"symfony/filesystem": "~2.3",
1718
"phpunit/phpunit": "~3.7.28",
1819
"behat/behat": "~2.5",
1920
"phpspec/phpspec": "2.0"

spec/PHPCR/Shell/Event/CommandExceptionEventSpec.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use PhpSpec\ObjectBehavior;
66
use Prophecy\Argument;
77
use Symfony\Component\Console\Output\OutputInterface;
8+
use Symfony\Component\Console\Input\InputInterface;
89

910
class CommandExceptionEventSpec extends ObjectBehavior
1011
{
@@ -15,9 +16,10 @@ function it_is_initializable()
1516

1617
function let(
1718
\Exception $exception,
19+
InputInterface $input,
1820
OutputInterface $output
1921
) {
20-
$this->beConstructedWith($exception, $output);
22+
$this->beConstructedWith($exception, $input, $output);
2123
}
2224

2325
function it_should_provide_access_to_event_parameters(

0 commit comments

Comments
 (0)