-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
40 lines (40 loc) · 1.11 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
{
"name": "seld/signal-handler",
"description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development",
"keywords": ["unix", "posix", "signal", "sigint", "sigterm"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "http://seld.be"
}
],
"require": {
"php": ">=7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.38 || ^9.6.20",
"psr/log": "^1.1.4 || ^2 || ^3",
"phpstan/phpstan": "^1.11.11",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/phpstan-deprecation-rules": "^1.2"
},
"autoload": {
"psr-4": { "Seld\\Signal\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Seld\\Signal\\": "tests/" }
},
"scripts": {
"phpstan": "@php phpstan analyse",
"test": "@php phpunit"
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
}
}
}