Permalink
Browse files

Merge pull request #45 from VSEphpbb/updates

Fix readme & docblock
  • Loading branch information...
2 parents d777afd + d6e9136 commit c87eee1c76e811d24f842eefecbd39a6f0510c0d @VSEphpbb VSEphpbb committed on GitHub Aug 5, 2016
Showing with 13 additions and 9 deletions.
  1. +4 −5 README.md
  2. +1 −1 composer.json
  3. +8 −3 ext.php
View
9 README.md
@@ -4,14 +4,14 @@ phpBB's Skeleton Extension is a tool for extension authors to help speed up and
## Requirements
-- phpBB version 3.1.4 or later.
+- phpBB version 3.1.4 or later (also compatible with phpBB 3.2.0-b3 or newer).
- PHP version 5.3.3 or later.
- PHP module `ZipArchive` enabled.
## Installation
- Ensure your phpBB and PHP installations meet the Skeleton Extension requirements.
-- [Download the latest release](https://github.com/phpbb-extensions/phpbb-ext-skeleton/releases).
+- [Download the latest release](https://www.phpbb.com/customise/db/official_tool/ext_skeleton/).
- Unzip and install to your phpBB `ext/` folder
- Go to "ACP" > "Customise" > "Extensions" and enable the "phpBB Skeleton Extension" extension.
@@ -25,8 +25,7 @@ To install the source code from this repository, clone the contents of this repo
### Web-based user interface
-In order to create an extension via the web UI just open your board an visit the
-"Create skeleton extension" link in the forum's navigation bar:
+In order to create an extension via the web UI just open your local development board and visit the "Create skeleton extension" link in the forum's navigation bar:
https://localhost/phpBB/app.php/skeleton
@@ -40,7 +39,7 @@ Then run the following command in your phpBB root (next to config.php):
$ ./bin/phpbbcli.php extension:create
-Afterwards copy your extension from `store/tmp-ext/` into the `ext/` folder
+A packaged ZIP file can be found in `store/tmp-ext/`.
## License
View
2 composer.json
@@ -3,7 +3,7 @@
"type": "phpbb-extension",
"description": "A phpBB Extension for creating extension skeletons",
"homepage": "https://github.com/phpbb-extensions/phpbb-ext-skeleton",
- "version": "1.0.0",
+ "version": "1.0.1-dev",
"time": "2016-08-04",
"license": "GPL-2.0",
"authors": [
View
11 ext.php
@@ -1,11 +1,16 @@
<?php
/**
*
- * @package phpBB Extension - Acme Demo
- * @copyright (c) 2013 phpBB Group
- * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+ * This file is part of the phpBB Forum Software package.
+ *
+ * @copyright (c) phpBB Limited <https://www.phpbb.com>
+ * @license GNU General Public License, version 2 (GPL-2.0)
+ *
+ * For full copyright and license information, please see
+ * the docs/CREDITS.txt file.
*
*/
+
namespace phpbb\skeleton;
/**

0 comments on commit c87eee1

Please sign in to comment.