Skip to content
Snippets Groups Projects
Commit 7ff3e9ac authored by Erick Hitter's avatar Erick Hitter
Browse files

Merge branch 'fix/naming' into 'master'

Keep filenames as they were

See merge request !8
parents 4667b66d 0c2e49a2
No related branches found
No related tags found
1 merge request!8Keep filenames as they were
Pipeline #5059 passed with stages
in 1 minute and 59 seconds
...@@ -32,8 +32,8 @@ module.exports = function( grunt ) { ...@@ -32,8 +32,8 @@ module.exports = function( grunt ) {
options: { options: {
domainPath: '/languages', domainPath: '/languages',
exclude: [ '\.git/*', 'bin/*', 'node_modules/*', 'tests/*' ], exclude: [ '\.git/*', 'bin/*', 'node_modules/*', 'tests/*' ],
mainFile: 'redis-user-session-storage.php', mainFile: 'wp-redis-user-session-storage.php',
potFilename: 'redis-user-session-storage.pot', potFilename: 'wp-redis-user-session-storage.pot',
potHeaders: { potHeaders: {
poedit: true, poedit: true,
'x-poedit-keywordslist': true 'x-poedit-keywordslist': true
......
{ {
"name" : "ethitter/redis-user-session-storage", "name" : "ethitter/wp-redis-user-session-storage",
"description" : "Store WordPress session tokens in Redis rather than the usermeta table. Requires the Redis PECL extension.", "description" : "Store WordPress session tokens in Redis rather than the usermeta table. Requires the Redis PECL extension.",
"homepage" : "https://ethitter.com/", "homepage" : "https://ethitter.com/",
"type" : "wordpress-plugin", "type" : "wordpress-plugin",
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Plugin activation hooks to migrate and clean up data. * Plugin activation hooks to migrate and clean up data.
* *
* @package Redis_User_Session_Storage * @package WP_Redis_User_Session_Storage
*/ */
namespace Redis_User_Session_Storage; namespace Redis_User_Session_Storage;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Offload session storage to Redis. * Offload session storage to Redis.
* *
* @package Redis_User_Session_Storage * @package WP_Redis_User_Session_Storage
*/ */
namespace Redis_User_Session_Storage; namespace Redis_User_Session_Storage;
......
...@@ -5,7 +5,7 @@ msgstr "" ...@@ -5,7 +5,7 @@ msgstr ""
"Project-Id-Version: Redis User Session Storage 0.2\n" "Project-Id-Version: Redis User Session Storage 0.2\n"
"Report-Msgid-Bugs-To: " "Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/redis-user-session-storage\n" "https://wordpress.org/support/plugin/redis-user-session-storage\n"
"POT-Creation-Date: 2022-07-09 20:23:47+00:00\n" "POT-Creation-Date: 2022-07-10 01:18:39+00:00\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
...@@ -25,7 +25,7 @@ msgstr "" ...@@ -25,7 +25,7 @@ msgstr ""
"X-Textdomain-Support: yes\n" "X-Textdomain-Support: yes\n"
"X-Generator: grunt-wp-i18n 1.0.3\n" "X-Generator: grunt-wp-i18n 1.0.3\n"
#: redis-user-session-storage.php:90 #: wp-redis-user-session-storage.php:93
#. translators: 1: New plugin name, 2: Old plugin name #. translators: 1: New plugin name, 2: Old plugin name
msgid "" msgid ""
"%1$s: An outdated version of this plugin, %2$s, is active. Please " "%1$s: An outdated version of this plugin, %2$s, is active. Please "
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* PHPUnit bootstrap file * PHPUnit bootstrap file
* *
* @package WP_Revisions_Control * @package WP_Redis_User_Session_Storage
*/ */
$redis_user_session_storage = getenv( 'WP_TESTS_DIR' ); $redis_user_session_storage = getenv( 'WP_TESTS_DIR' );
...@@ -23,7 +23,7 @@ require_once $redis_user_session_storage . '/includes/functions.php'; ...@@ -23,7 +23,7 @@ require_once $redis_user_session_storage . '/includes/functions.php';
* Manually load the plugin being tested. * Manually load the plugin being tested.
*/ */
function redis_user_session_storage_tests_manually_load_plugin() { function redis_user_session_storage_tests_manually_load_plugin() {
require dirname( dirname( __FILE__ ) ) . '/redis-user-session-storage.php'; require dirname( dirname( __FILE__ ) ) . '/wp-redis-user-session-storage.php';
} }
tests_add_filter( 'muplugins_loaded', 'redis_user_session_storage_tests_manually_load_plugin' ); tests_add_filter( 'muplugins_loaded', 'redis_user_session_storage_tests_manually_load_plugin' );
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Test plugin features. * Test plugin features.
* *
* @package Redis_User_Session_Storage * @package WP_Redis_User_Session_Storage
*/ */
namespace Redis_User_Session_Storage\Tests\Inc; namespace Redis_User_Session_Storage\Tests\Inc;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
* *
* @package Redis_User_Session_Storage * @package WP_Redis_User_Session_Storage
*/ */
namespace Redis_User_Session_Storage; namespace Redis_User_Session_Storage;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment