-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 909 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
{
"name": "async-bot/linux-manual-pages-plugin",
"description": "Linux manual pages plugin",
"type": "library",
"license": "MIT",
"authors": [
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4",
"ext-dom": "*",
"amphp/amp": "^2.2.0",
"async-bot/core": "dev-master"
},
"require-dev": {
"infection/infection": "^0.13.4",
"maglnet/composer-require-checker": "^2.0",
"phpunit/phpunit": "^8.3",
"slevomat/coding-standard": "^5.0.4",
"squizlabs/php_codesniffer": "^3.4.2"
},
"autoload": {
"psr-4": {
"AsyncBot\\Plugin\\LinuxManualPages\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AsyncBot\\Plugin\\LinuxManualPagesTest\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}