-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 772 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 772 Bytes
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
{
"name": "jerodev/php-irc-client",
"description": "php irc client based on react",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jeroen Deviaene",
"email": "jeroen@deviaene.eu"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Jerodev\\PhpIrcClient\\": "src/",
"Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse src tests --level=5",
"test": "./vendor/bin/phpunit"
},
"require": {
"react/socket": "dev-master"
},
"require-dev": {
"phpstan/phpstan": "^0.11.2",
"phpunit/phpunit": "^8.0",
"phpstan/phpstan-phpunit": "^0.11.0"
}
}