forked from jerodev/php-irc-client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
54 lines (54 loc) · 1.39 KB
/
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
52
53
54
{
"name": "omnicolor/php-irc-client",
"description": "PHP IRC client based on React",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jeroen Deviaene",
"email": "[email protected]"
},
{
"name": "Omni Adams",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Jerodev\\PhpIrcClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jerodev\\PhpIrcClient\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": "^8.0",
"react/socket": "^1.12.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.17",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.0"
},
"scripts": {
"all": [
"@lint",
"@php-cs-fixer",
"@phpstan",
"@coverage"
],
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-html=vendor/coverage",
"lint": "parallel-lint --colors src tests",
"php-cs-fixer": "php-cs-fixer fix --dry-run --config=php_cs.php -v --diff",
"phpstan": "phpstan analyze",
"test": "phpunit"
}
}