-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.47 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
{
"name": "flow-control/react-inotify",
"description": "Event-driven inotify streams for non-blocking I/O in ReactPHP",
"keywords": ["event-driven", "inotify", "non-blocking", "ReactPHP"],
"license": "MIT",
"require": {
"php": "^8.0",
"ext-inotify": "*",
"react/event-loop": "^1.2",
"evenement/evenement": "^3"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5",
"phpstan/phpstan": "^1.0.0",
"infection/infection": "<1.0"
},
"autoload": {
"psr-4": {
"Flowcontrol\\React\\Inotify\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Flowcontrol\\React\\Inotify\\Tests\\": "tests"
}
},
"scripts": {
"fix": "./tools/php-cs-fixer.phar fix",
"test:lint": "./tools/php-cs-fixer.phar fix --dry-run",
"test:phpstan": "phpstan analyse --level max examples/ src/",
"test:unit": [
"@putenv XDEBUG_MODE=coverage",
"phpunit"
],
"test:mutation": [
"@putenv XDEBUG_MODE=coverage",
"infection --min-msi=58 --no-interaction --no-ansi --no-progress"
],
"test": [
"@test:lint",
"@test:phpstan",
"@test:unit",
"@test:mutation"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"infection/extension-installer": true
}
}
}