diff --git a/README.md b/README.md index e112ec2..5851a09 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,14 @@ -# pressbooks-shortcode-handler +# Pressbooks Shortcode Handler + +Contributors: steelwagstaff +Tags: pressbooks, plugins +Requires at least: 6.3.1 +Tested up to: 6.3.1 +Stable tag: 1.1.0 +License: GPLv3 or later +License URI: https://www.gnu.org/licenses/gpl-3.0.html + +## Description Plugin for Pressbooks to handle additional shortcodes used by Lumen Learning. Adds support for the following shortcodes: diff --git a/composer.json b/composer.json index 74228eb..0747a9f 100644 --- a/composer.json +++ b/composer.json @@ -2,12 +2,16 @@ "name": "pressbooks/pressbooks-shortcode-handler", "description": "A plugin for Pressbooks which handles additional shortcodes used by Lumen Learning", "type": "wordpress-plugin", - "minimum-stability": "stable", "license": "GPL-3.0-or-later", + "homepage": "https://github.com/pressbooks/pressbooks-shortcode-handler", "authors": [ { - "name": "Steel Wagstaff", - "homepage": "https://github.com/SteelWagstaff" + "name": "Pressbooks", + "homepage": "https://pressbooks.org" } - ] + ], + "support": { + "email": "code@pressbooks.com", + "issues": "https://github.com/pressbooks/pressbooks-shortcode-handler/issues" + } } diff --git a/pressbooks-shortcode-handler.php b/pressbooks-shortcode-handler.php index 8db825c..7bb472f 100644 --- a/pressbooks-shortcode-handler.php +++ b/pressbooks-shortcode-handler.php @@ -2,12 +2,13 @@ /* Plugin Name: Pressbooks Shortcode Handler -Plugin URI: https://github.com/SteelWagstaff/pressbooks-shortcode-handler +Plugin URI: https://github.com/pressbooks/pressbooks-shortcode-handler Description: Plugin for Pressbooks to handle additional shortcodes used by Lumen Learning. Version: 1.1.0 -Author: Steel Wagstaff -Author URI: https://steelwagstaff.info -License: GPL 3.0 +Author: Pressbooks (Book Oven Inc.) +Author URI: https://pressbooks.org +Text Domain: pressbooks-shortcode-handler +License: GPL v3 or later */ add_shortcode( 'reveal-answer', 'revealAnswerShortCodeHandler' );