diff --git a/README.md b/README.md index 4fc867e..dc295d8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ PHP tool binaries for BSU WordPress development. Installed via npm, ships the fo | Binary | Version | Purpose | |---|---|---| -| `phpcs` | 4.x | PHP CodeSniffer — enforces BSUWordPressCS coding standards | +| `phpcs` | 4.x | PHP CodeSniffer — enforces bsu-phplint coding standards | | `phpcbf` | 4.x | PHP Code Beautifier — auto-fixes PHPCS violations | | `phpstan` | 1.x | PHPStan — static analysis for type safety and correctness | diff --git a/bin/register-bsuwordpresscs.php b/bin/register-bsu-phplint.php similarity index 72% rename from bin/register-bsuwordpresscs.php rename to bin/register-bsu-phplint.php index f15597b..2457d55 100644 --- a/bin/register-bsuwordpresscs.php +++ b/bin/register-bsu-phplint.php @@ -1,20 +1,20 @@ /dev/null' ); -echo "Registered BSUWordPressCS in phpcs installed_paths.\n"; +echo "Registered bsu-phplint in phpcs installed_paths.\n"; diff --git a/composer.json b/composer.json index e0e88fa..338fc41 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } }, "scripts": { - "post-install-cmd": "@php bin/register-bsuwordpresscs.php", - "post-update-cmd": "@php bin/register-bsuwordpresscs.php" + "post-install-cmd": "@php bin/register-bsu-phplint.php", + "post-update-cmd": "@php bin/register-bsu-phplint.php" } } diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 031734a..122f5b1 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => '__root__', 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '31095481485cd719e8243d8fcd3aef3db61449e1', + 'reference' => 'f1a8e2bbb71ef3efb8af5bd7d6ef3d59a5a78e5a', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -13,7 +13,7 @@ '__root__' => array( 'pretty_version' => 'dev-main', 'version' => 'dev-main', - 'reference' => '31095481485cd719e8243d8fcd3aef3db61449e1', + 'reference' => 'f1a8e2bbb71ef3efb8af5bd7d6ef3d59a5a78e5a', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), diff --git a/vendor/squizlabs/php_codesniffer/CodeSniffer.conf b/vendor/squizlabs/php_codesniffer/CodeSniffer.conf index 1418d3c..014d937 100644 --- a/vendor/squizlabs/php_codesniffer/CodeSniffer.conf +++ b/vendor/squizlabs/php_codesniffer/CodeSniffer.conf @@ -1,5 +1,5 @@ '../../phpcsstandards/phpcsextra,../../phpcsstandards/phpcsutils,../../wp-coding-standards/wpcs,../../../../BSUWordPressCS', + 'installed_paths' => '../../phpcsstandards/phpcsextra,../../phpcsstandards/phpcsutils,../../wp-coding-standards/wpcs,../../../../bsu-phplint', ); ?> \ No newline at end of file