1dev plugin for DokuWiki
2
3The DokuWiki Developer's tool
4
5All documentation for this plugin can be found at
6https://www.dokuwiki.org/plugin:dev
7
8If you install this plugin manually, make sure it is installed in
9lib/plugins/dev/ - if the folder is called different it
10will not work!
11
12Please refer to http://www.dokuwiki.org/extensions for additional info
13on how to install extensions in DokuWiki.
14
15Plugin Wizard
16=============
17
18This repository serves a dual purpose. It's main purpose it to provide
19a plugin for DokuWiki that helps developers to create new plugins. It
20also provides the web interface known as the "DokuWiki Plugin Wizard"
21available at https://pluginwiz.dokuwiki.org/ - files for that are
22in the www subdirectory.
23
24Users of the plugin do not need to bother with the wizard parts (in
25fact they are not included in the download when the plugin is installed
26via the plugin manager).
27
28If you want to work on the wizard code, you need to install the
29dependencies using composer. This is needed because the wizard runs
30independent of a DokuWiki installation.
31
32Wizard and plugin only share the skeletons (in the skel directory)
33and the Skeletor class which implements the logic for using the
34skeletons.
35
36----
37Copyright (C) Andreas Gohr <andi@splitbrain.org>
38
39This program is free software; you can redistribute it and/or modify
40it under the terms of the GNU General Public License as published by
41the Free Software Foundation; version 2 of the License
42
43This program is distributed in the hope that it will be useful,
44but WITHOUT ANY WARRANTY; without even the implied warranty of
45MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
46GNU General Public License for more details.
47
48See the LICENSING file for details
49