-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.xml
42 lines (39 loc) · 1.21 KB
/
manifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<plugin_manifest xmlns="http://www.elgg.org/plugin_manifest/1.8">
<id>code_review</id>
<name>Code Analyzer</name>
<author>Paweł Sroka ([email protected])</author>
<version>1.0.6</version>
<description>Analyzes plugins code and provides basic information on code quality, compatibility and structure.
</description>
<website>https://srokap.pl/</website>
<copyright>(C) Paweł Sroka 2013-2014</copyright>
<license>http://opensource.org/licenses/MIT</license>
<category>admin</category>
<category>tools</category>
<screenshot>
<path>screenshots/analysis.png</path>
<description>Typical analysis view</description>
</screenshot>
<screenshot>
<path>screenshots/deprecated_list.png</path>
<description>Deprecated functions summary and solutions</description>
</screenshot>
<screenshot>
<path>screenshots/code_fixing.png</path>
<description>Automatic code fixing</description>
</screenshot>
<requires>
<type>php_version</type>
<version>5.3</version>
<comparison>ge</comparison>
</requires>
<requires>
<type>elgg_release</type>
<version>1.8</version>
</requires>
<requires>
<type>php_extension</type>
<name>Reflection</name>
</requires>
</plugin_manifest>