Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "LGPL-3.0",
"autoload": {
"psr-4": {
"Piwik\\GithubSync\\": "src/"
"Matomo\\GithubSync\\": "src/"
}
},
"require": {
Expand Down
2 changes: 1 addition & 1 deletion github-sync.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php

use Piwik\GithubSync\SyncCommand;
use Matomo\GithubSync\SyncCommand;
use Symfony\Component\Console\Application;

require_once __DIR__ . '/vendor/autoload.php';
Expand Down
2 changes: 1 addition & 1 deletion src/AbstractSynchronizer.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Piwik\GithubSync;
namespace Matomo\GithubSync;

use Symfony\Component\Console\Helper\QuestionHelper;
use Symfony\Component\Console\Input\InputInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/AuthenticationRequiredException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Piwik\GithubSync;
namespace Matomo\GithubSync;

class AuthenticationRequiredException extends \Exception
{
Expand Down
2 changes: 1 addition & 1 deletion src/Github.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Piwik\GithubSync;
namespace Matomo\GithubSync;

use Github\Client;
use Github\Exception\RuntimeException;
Expand Down
2 changes: 1 addition & 1 deletion src/LabelSynchronizer.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Piwik\GithubSync;
namespace Matomo\GithubSync;

use ArrayComparator\ArrayComparator;

Expand Down
2 changes: 1 addition & 1 deletion src/MilestoneSynchronizer.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Piwik\GithubSync;
namespace Matomo\GithubSync;

use ArrayComparator\ArrayComparator;

Expand Down
2 changes: 1 addition & 1 deletion src/SyncCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Piwik\GithubSync;
namespace Matomo\GithubSync;

use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
Expand Down