Skip to content

Commit 770e5a2

Browse files
committed
Merge pull request #45 from ericdowell/update-php-coveralls
Updating 'satooshi/php-coveralls' to use version 1.0.*
2 parents 02790d7 + e078abb commit 770e5a2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Diff for: composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"require": {
1616
"php": ">=5.3",
1717
"ext-curl": "*",
18-
"satooshi/php-coveralls": "0.6.*",
18+
"satooshi/php-coveralls": "1.0.*",
1919
"symfony/console": ">=2.0"
2020
},
2121
"require-dev": {

Diff for: src/CodeClimate/Bundle/TestReporterBundle/CoverageCollector.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
use CodeClimate\Component\System\Git\GitCommand;
55
use CodeClimate\Bundle\TestReporterBundle\Entity\JsonFile;
6-
use Contrib\Bundle\CoverallsV1Bundle\Api\Jobs;
7-
use Contrib\Bundle\CoverallsV1Bundle\Config\Configuration;
6+
use Satooshi\Bundle\CoverallsV1Bundle\Api\Jobs;
7+
use Satooshi\Bundle\CoverallsV1Bundle\Config\Configuration;
88

99
class CoverageCollector
1010
{
@@ -20,7 +20,7 @@ public function __construct($paths)
2020
{
2121
$rootDir = getcwd();
2222
$config = new Configuration();
23-
$config->setSrcDir($rootDir);
23+
$config->setRootDir($rootDir);
2424
$this->setCloverPaths($paths);
2525
foreach ($this->getCloverPaths() as $path) {
2626
if (file_exists($path)) {

Diff for: src/CodeClimate/Bundle/TestReporterBundle/Entity/JsonFile.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use CodeClimate\Component\System\Git\GitCommand;
55
use CodeClimate\Bundle\TestReporterBundle\Entity\CiInfo;
66
use CodeClimate\Bundle\TestReporterBundle\Version;
7-
use Contrib\Bundle\CoverallsV1Bundle\Entity\JsonFile as SatooshiJsonFile;
7+
use Satooshi\Bundle\CoverallsV1Bundle\Entity\JsonFile as SatooshiJsonFile;
88

99
class JsonFile extends SatooshiJsonFile
1010
{

Diff for: src/CodeClimate/Component/System/Git/GitCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
namespace CodeClimate\Component\System\Git;
33

4-
use Contrib\Component\System\SystemCommand;
4+
use Satooshi\Component\System\SystemCommand;
55

66
class GitCommand extends SystemCommand
77
{

0 commit comments

Comments
 (0)