File tree 4 files changed +6
-6
lines changed
Bundle/TestReporterBundle
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 15
15
"require" : {
16
16
"php" : " >=5.3" ,
17
17
"ext-curl" : " *" ,
18
- "satooshi/php-coveralls" : " 0.6 .*" ,
18
+ "satooshi/php-coveralls" : " 1.0 .*" ,
19
19
"symfony/console" : " >=2.0"
20
20
},
21
21
"require-dev" : {
Original file line number Diff line number Diff line change 3
3
4
4
use CodeClimate \Component \System \Git \GitCommand ;
5
5
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 ;
8
8
9
9
class CoverageCollector
10
10
{
@@ -20,7 +20,7 @@ public function __construct($paths)
20
20
{
21
21
$ rootDir = getcwd ();
22
22
$ config = new Configuration ();
23
- $ config ->setSrcDir ($ rootDir );
23
+ $ config ->setRootDir ($ rootDir );
24
24
$ this ->setCloverPaths ($ paths );
25
25
foreach ($ this ->getCloverPaths () as $ path ) {
26
26
if (file_exists ($ path )) {
Original file line number Diff line number Diff line change 4
4
use CodeClimate \Component \System \Git \GitCommand ;
5
5
use CodeClimate \Bundle \TestReporterBundle \Entity \CiInfo ;
6
6
use CodeClimate \Bundle \TestReporterBundle \Version ;
7
- use Contrib \Bundle \CoverallsV1Bundle \Entity \JsonFile as SatooshiJsonFile ;
7
+ use Satooshi \Bundle \CoverallsV1Bundle \Entity \JsonFile as SatooshiJsonFile ;
8
8
9
9
class JsonFile extends SatooshiJsonFile
10
10
{
Original file line number Diff line number Diff line change 1
1
<?php
2
2
namespace CodeClimate \Component \System \Git ;
3
3
4
- use Contrib \Component \System \SystemCommand ;
4
+ use Satooshi \Component \System \SystemCommand ;
5
5
6
6
class GitCommand extends SystemCommand
7
7
{
You can’t perform that action at this time.
0 commit comments