Skip to content
This repository has been archived by the owner on Apr 23, 2022. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-thebaud committed Jul 17, 2018
1 parent ee0d0f6 commit f4c1ce7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
3 changes: 2 additions & 1 deletion composer.json
Expand Up @@ -37,7 +37,8 @@
"require-dev": {
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.0",
"satooshi/php-coveralls": "^2.0"
"phploc/phploc": "^4.0",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions phpcs.xml
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<ruleset name="Expressive Skeleton coding standard">
<description>Expressive Skeleton coding standard</description>
<ruleset name="PhpUnitGen PSR-2 validation">
<description>PhpUnitGen PSR-2 validation</description>

<!-- display progress -->
<arg value="p"/>
Expand Down
3 changes: 1 addition & 2 deletions phpunit.xml
Expand Up @@ -8,10 +8,9 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="test">
<testsuite name="PhpUnitGen tests suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Application.php
Expand Up @@ -32,7 +32,7 @@ class Application extends AbstractApplication
/**
* @var string VERSION The current application version.
*/
public const VERSION = '2.1.3';
public const VERSION = '2.1.4';

/**
* Application constructor.
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/Console/ApplicationTest.php
Expand Up @@ -47,7 +47,7 @@ public function testConstruct(): void
$this->assertInstanceOf(AbstractApplication::class, $app);

$this->assertSame('phpunitgen', $app->getName());
$this->assertSame('2.1.3', $app->getVersion());
$this->assertSame('2.1.4', $app->getVersion());

$generate = $app->get('generate');
$this->assertInstanceOf(GenerateCommand::class, $generate);
Expand Down Expand Up @@ -95,7 +95,7 @@ public function testDoRunNotQuiet(): void
$output->expects($this->once())->method('isQuiet')
->willReturn(false);
$output->expects($this->once())->method('writeln')
->with("PhpUnitGen by Paul Thébaud (version <info>2.1.3</info>).\n");
->with("PhpUnitGen by Paul Thébaud (version <info>2.1.4</info>).\n");

$app->expects($this->once())->method('doRunParent')
->with($input, $output)->willReturn(0);
Expand Down

0 comments on commit f4c1ce7

Please sign in to comment.