Skip to content

Commit 623cb6f

Browse files
committed
Rename the plugin to “No Fuss IndexNow”.
1 parent d75495f commit 623cb6f

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "peterwilsoncc/wp-plugin-template",
3-
"description": "WP Plugin Template.",
2+
"name": "peterwilsoncc/no-fuss-indexnow",
3+
"description": "No Fuss IndexNow.",
44
"type": "wordpress-plugin",
55
"require-dev": {
66
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",

inc/namespace.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22
/**
3-
* WP Plugin Template
3+
* No Fuss IndexNow
44
*
5-
* @package WpPluginTemplate
5+
* @package NoFussIndexNow
66
*/
77

8-
namespace PWCC\WpPluginTemplate;
8+
namespace PWCC\NoFussIndexNow;
99

1010
const PLUGIN_VERSION = '1.0.0';
1111

wp-plugin-template.php renamed to no-fuss-indexnow.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<?php
22
/**
3-
* WP Plugin Template
3+
* No Fuss IndexNow
44
*
5-
* @package WpPluginTemplate
5+
* @package NoFussIndexNow
66
* @author Peter Wilson
77
* @copyright YYYY Peter Wilson
88
* @license MIT
99
*
1010
* @wordpress-plugin
11-
* Plugin Name: WP Plugin Template
12-
* Description: A template for creating WordPress plugins.
11+
* Plugin Name: No Fuss IndexNow
12+
* Description: No Fuss IndexNow
1313
* Version: 1.0.0
1414
* Requires at least: 6.5
1515
* Requires PHP: 8.0
1616
* Author: Peter Wilson
1717
* Author URI: https://peterwilson.cc
1818
* License: MIT
19-
* Text Domain: wp-plugin-template
19+
* Text Domain: no-fuss-indexnow
2020
*/
2121

22-
namespace PWCC\WpPluginTemplate;
22+
namespace PWCC\NoFussIndexNow;
2323

2424
require_once __DIR__ . '/inc/namespace.php';
2525

phpcs.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<rule ref="WordPress.WP.I18n">
3535
<properties>
3636
<!-- Value: replace the text domain used. -->
37-
<property name="text_domain" type="array" value="wp-plugin-template"/>
37+
<property name="text_domain" type="array" value="no-fuss-indexnow"/>
3838
</properties>
3939
</rule>
4040
<rule ref="WordPress.WhiteSpace.ControlStructureSpacing">

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
convertWarningsToExceptions="true"
99
>
1010
<testsuites>
11-
<testsuite name="wp-plugin-template">
11+
<testsuite name="no-fuss-indexnow">
1212
<directory prefix="class-test-" suffix=".php">./tests/</directory>
1313
<!-- exclude>./tests/class-test-sample.php</exclude -->
1414
</testsuite>

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# WP Plugin Template
1+
# No Fuss IndexNow
22

readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
=== WP Plugin Template ===
1+
=== No Fuss IndexNow ===
22
Contributors: peterwilsoncc
33
Tags:
44
Tested up to: 6.8
55
Stable tag: 1.0.0
66
License: MIT
7-
License URI: https://github.com/peterwilsoncc/wp-plugin-template/blob/main/LICENSE
7+
License URI: https://github.com/peterwilsoncc/no-fuss-indexnow/blob/main/LICENSE
88

99
Short Description
1010

tests/bootstrap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* PHPUnit bootstrap file.
44
*
5-
* @package WpPluginTemplate
5+
* @package NoFussIndexNow
66
*/
77

88
$_pwcc_tests_directory = getenv( 'WP_TESTS_DIR' );
@@ -30,7 +30,7 @@
3030
* Manually load the plugin being tested.
3131
*/
3232
function _pwcc_tests_manually_load_plugin() {
33-
require dirname( __DIR__ ) . '/wp-plugin-template.php';
33+
require dirname( __DIR__ ) . '/no-fuss-indexnow.php';
3434
}
3535

3636
tests_add_filter( 'muplugins_loaded', '_pwcc_tests_manually_load_plugin' );

tests/class-test-plugin-headers.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
/**
33
* Test Plugin Readme and PHP Headers
44
*
5-
* @package WpPluginTemplate
5+
* @package NoFussIndexNow
66
*/
77

8-
namespace PWCC\WpPluginTemplate\Tests;
8+
namespace PWCC\NoFussIndexNow\Tests;
99

1010
use WP_UnitTestCase;
1111

tests/class-test-plugin-versions.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
/**
33
* Test Plugin Versions match.
44
*
5-
* @package WpPluginTemplate
5+
* @package NoFussIndexNow
66
*/
77

8-
namespace PWCC\WpPluginTemplate\Tests;
8+
namespace PWCC\NoFussIndexNow\Tests;
99

1010
use WP_UnitTestCase;
1111

12-
use const PWCC\WpPluginTemplate\PLUGIN_VERSION;
12+
use const PWCC\NoFussIndexNow\PLUGIN_VERSION;
1313

1414
/**
1515
* Test Plugin Readme and PHP Headers

0 commit comments

Comments
 (0)