-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 992 Bytes
/
composer.json
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
{
"name": "professional-wiki/id-generator",
"type": "mediawiki-extension",
"description": "Provides a parser function to generate unique incremental numeric IDs",
"keywords": [
"MediaWiki",
"wiki",
"id",
"id generator",
"idgenerator",
"next_number",
"nextnumber",
"next number",
"parser function"
],
"homepage": "https://github.com/ProfessionalWiki/IdGenerator",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Professional.Wiki",
"email": "info@professional.wiki",
"homepage": "https://professional.wiki",
"role": "Creator"
},
{
"name": "Jeroen De Dauw",
"email": "jeroendedauw@gmail.com",
"homepage": "https://www.entropywins.wtf",
"role": "Creator and lead developer"
}
],
"support": {
"source": "https://github.com/ProfessionalWiki/IdGenerator"
},
"require": {
"php": ">=7.1",
"composer/installers": "^2|^1.0.1"
},
"autoload": {
"psr-4": {
"IdGenerator\\": "src/",
"IdGenerator\\Tests\\": "tests/"
}
}
}