Skip to content

Commit

Permalink
Rename namespace prefix from Dealerdirect to PHPCSStandards
Browse files Browse the repository at this point in the history
As discussed in issue 188.

**Important**: this needs a "breaking change" changelog entry as the command to run the plugin directly (either manually or via a script) has changed. See the README updates for the change which needs to be highlighted in the changelog.
  • Loading branch information
jrfnl committed Oct 3, 2022
1 parent 231b4e8 commit 306335a
Show file tree
Hide file tree
Showing 20 changed files with 50 additions and 50 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -111,7 +111,7 @@ section of the `composer.json`:
{
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
]
}
}
Expand All @@ -124,7 +124,7 @@ referenced from other script configurations, as follows:
{
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"post-install-cmd": [
"@install-codestandards"
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Expand Up @@ -43,20 +43,20 @@
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Tests\\": "tests/"
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Tests\\": "tests/"
}
},
"extra": {
"class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
"class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"lint": [
"@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --exclude vendor --exclude .git"
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Expand Up @@ -18,7 +18,7 @@
</testsuites>

<listeners>
<listener class="Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\DebugTestListener" />
<listener class="PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\DebugTestListener" />
</listeners>

<filter>
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.php
Expand Up @@ -8,7 +8,7 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer;

use Composer\Composer;
use Composer\EventDispatcher\EventSubscriberInterface;
Expand Down
2 changes: 1 addition & 1 deletion tests/CreateComposerZipArtifacts.php
Expand Up @@ -8,7 +8,7 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests;

use DirectoryIterator;
use RecursiveCallbackFilterIterator;
Expand Down
2 changes: 1 addition & 1 deletion tests/DebugTestListener.php
Expand Up @@ -8,7 +8,7 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests;

use PHPUnit\Framework\TestListener;
use Yoast\PHPUnitPolyfills\TestListeners\TestListenerDefaultImplementation;
Expand Down
8 changes: 4 additions & 4 deletions tests/IntegrationTest/BaseLineTest.php
Expand Up @@ -8,11 +8,11 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;

use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\PHPCSVersions;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\PHPCSVersions;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;

/**
* Test baseline.
Expand Down
8 changes: 4 additions & 4 deletions tests/IntegrationTest/InstallUpdateEventsTest.php
Expand Up @@ -8,10 +8,10 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;

use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;

/**
* Test that the plugin is hooked into the right events and doesn't get triggered when those events are blocked.
Expand Down Expand Up @@ -42,7 +42,7 @@ final class InstallUpdateEventsTest extends TestCase
),
'scripts' => array(
'custom-runner' => array(
'Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run',
'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run',
),
'post-install-cmd' => array(
'echo "post-install-cmd successfully run"',
Expand Down
6 changes: 3 additions & 3 deletions tests/IntegrationTest/InstalledPathsOrderTest.php
Expand Up @@ -8,10 +8,10 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;

use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;

/**
* Test that the plugin always registers the installed_paths in the same order.
Expand Down
6 changes: 3 additions & 3 deletions tests/IntegrationTest/InvalidPackagesTest.php
Expand Up @@ -8,10 +8,10 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;

use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;

/**
* Test that the plugin does not act on packages which are not valid PHPCS standards.
Expand Down
6 changes: 3 additions & 3 deletions tests/IntegrationTest/NonInstallUpdateEventsTest.php
Expand Up @@ -8,10 +8,10 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;

use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;

/**
* Test that the plugin doesn't get triggered on events it isn't hooked into.
Expand Down
8 changes: 4 additions & 4 deletions tests/IntegrationTest/PlayNiceWithScriptsTest.php
Expand Up @@ -8,10 +8,10 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;

use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;

/**
* Test that the plugin does not block other post install/update scripts from running.
Expand Down Expand Up @@ -39,7 +39,7 @@ final class PlayNiceWithScriptsTest extends TestCase
'echo "post-update-cmd successfully run"',
),
'install-codestandards' => array(
'Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run',
'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run',
'echo "install-codestandards successfully run"',
),
),
Expand Down
6 changes: 3 additions & 3 deletions tests/IntegrationTest/PreexistingPHPCSConfigTest.php
Expand Up @@ -8,10 +8,10 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;

use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\PHPCSVersions;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\PHPCSVersions;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;

/**
* Test correctly handling a pre-existing PHPCS configuration file.
Expand Down
Expand Up @@ -8,10 +8,10 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;

use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\PHPCSVersions;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\PHPCSVersions;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use RuntimeException;

/**
Expand Down
6 changes: 3 additions & 3 deletions tests/IntegrationTest/RegisterExternalStandardsTest.php
Expand Up @@ -8,10 +8,10 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;

use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\PHPCSVersions;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\PHPCSVersions;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;

/**
* Test registering external standards.
Expand Down
6 changes: 3 additions & 3 deletions tests/IntegrationTest/RemovePluginTest.php
Expand Up @@ -8,10 +8,10 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;

use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;

/**
* Test plugin does not throw errors when the plugin is still in memory, but PHPCS and the plugin are uninstalled.
Expand Down
6 changes: 3 additions & 3 deletions tests/IntegrationTest/RootPackageHandlingTest.php
Expand Up @@ -8,10 +8,10 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\IntegrationTest;

use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Plugin;
use PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests\TestCase;

/**
* Test that the plugin correctly registers standards found in the root package if it is an external standard,
Expand Down
2 changes: 1 addition & 1 deletion tests/PHPCSVersions.php
Expand Up @@ -8,7 +8,7 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests;

/**
* Helper class to retrieve PHPCS versions suitable for the current PHP version.
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Expand Up @@ -8,7 +8,7 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests;

use RecursiveDirectoryIterator;
use RecursiveIteratorIterator;
Expand Down Expand Up @@ -243,7 +243,7 @@ protected static function writeComposerJsonFile($config, $directory)
// Inject ability to run the plugin via a script.
if (isset($config['scripts']['install-codestandards']) === false) {
$config['scripts']['install-codestandards'] = array(
'Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run',
'PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run',
);
}

Expand Down
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Expand Up @@ -8,7 +8,7 @@
* @license MIT
*/

namespace Dealerdirect\Composer\Plugin\Installers\PHPCodeSniffer\Tests;
namespace PHPCSStandards\Composer\Plugin\Installers\PHPCodeSniffer\Tests;

/*
* Make sure the tests always start with a clean slate.
Expand Down

0 comments on commit 306335a

Please sign in to comment.