-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 997 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
46
47
48
49
50
51
{
"name": "onoi/message-reporter",
"type": "library",
"description": "An interface to report and relay arbitrary messages to registered handlers",
"keywords": [
"messages",
"reporter"
],
"homepage": "https://github.com/onoi/message-reporter",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jeroen De Dauw",
"homepage": "https://EntropyWins.wtf"
},
{
"name": "James Hong Kong"
}
],
"require": {
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"ockcyp/covers-validator": "~1.1",
"squizlabs/php_codesniffer": "~3.3",
"mediawiki/mediawiki-codesniffer": "~34.0",
"phpstan/phpstan": "~0.12.67"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"Onoi\\MessageReporter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Onoi\\MessageReporter\\Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0
},
"scripts":{
"phpunit": "vendor/bin/phpunit -c phpunit.xml.dist"
}
}