-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
102 lines (84 loc) · 3.01 KB
/
config.php
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
return [
/*
|--------------------------------------------------------------------------
| Plugin Name (required)
|--------------------------------------------------------------------------
|
| The name of your plugin, which will be displayed in the Plugins list in
| the operator area. Can be either a plain text name or a language key to
| work with translations.
|
*/
'name' => 'Plugins#Skeleton::lang.name',
/*
|--------------------------------------------------------------------------
| Plugin URI (optional)
|--------------------------------------------------------------------------
|
| The home page of the plugin - where you may store documentation or
| general information about the plugin.
|
*/
'uri' => '',
/*
|--------------------------------------------------------------------------
| Plugin Description (optional)
|--------------------------------------------------------------------------
|
| A short description of the plugin, as displayed in the Plugins section
| in the operator area. Try to keep this short and sweet.
|
*/
'description' => 'Plugins#Skeleton::lang.description',
/*
|--------------------------------------------------------------------------
| Plugin Version (optional)
|--------------------------------------------------------------------------
|
| The current version number of the plugin, such as 1.0 or 1.0.3. Note that
| versions are compared using version_compare() e.g. 1.02 is greater
| than 1.1.
|
*/
'version' => '1.0.0',
/*
|--------------------------------------------------------------------------
| Plugin Author (optional)
|--------------------------------------------------------------------------
|
| The name of the plugin author. More than one author may be listed as a
| string.
|
*/
'author' => ':author_name',
/*
|--------------------------------------------------------------------------
| Plugin Author URI (optional)
|--------------------------------------------------------------------------
|
| Optionally provide a link to the author's profile or contact page.
|
*/
'author_uri' => ':author_uri',
/*
|--------------------------------------------------------------------------
| Plugin Icon (optional)
|--------------------------------------------------------------------------
|
| An icon for the plugin. Set the full path to an image on the file system.
|
*/
'icon' => '',
/*
|--------------------------------------------------------------------------
| Supported help desk version
|--------------------------------------------------------------------------
|
| A version constraint to specify which versions of the help desk the
| addon is compatible with. For supported constraints, see
| https://getcomposer.org/doc/articles/versions.md
|
*/
'supports' => '*',
];