-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.19 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.19 KB
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
{
"name": "professional-wiki/neowiki",
"type": "mediawiki-extension",
"license": "GPL-2.0-or-later",
"description": "TODO",
"authors": [
{
"name": "Professional.Wiki",
"email": "info@professional.wiki",
"homepage": "https://Professional.Wiki"
},
{
"name": "Jeroen De Dauw",
"email": "jeroendedauw@gmail.com",
"homepage": "https://www.EntropyWins.wtf/mediawiki"
}
],
"require": {
"php": "^8.3",
"composer/installers": "^2|^1.0.1",
"opis/json-schema": "^2.3.0",
"laudis/neo4j-php-client": "^3.1.2",
"jeroen/psr-log-test-doubles": "^3.0.0",
"jeroen/file-fetcher": "^6.1.0",
"ext-json": "*",
"wmde/clock": "^1"
},
"require-dev": {
"vimeo/psalm": "^5.25.0",
"phpstan/phpstan": "^1.12.2",
"mediawiki/mediawiki-codesniffer": "44.0.0",
"slevomat/coding-standard": "^v8.15.0"
},
"autoload": {
"psr-4": {
"ProfessionalWiki\\NeoWiki\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProfessionalWiki\\NeoWiki\\Tests\\": "tests/phpunit/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"installer-name": "NeoWiki"
}
}