-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 2 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 2 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "skie/signal_handler",
"description": "Cross-platform signal handling for CakePHP console commands with zero external dependencies. Supports Linux (pcntl), Windows (native API)",
"type": "cakephp-plugin",
"license": "MIT",
"keywords": [
"cakephp",
"plugin",
"signal",
"console",
"command",
"pcntl",
"windows",
"cross-platform"
],
"homepage": "https://github.com/skie/SignalHandler",
"support": {
"issues": "https://github.com/skie/SignalHandler/issues",
"source": "https://github.com/skie/SignalHandler"
},
"authors": [
{
"name": "Evgeny Tomenko",
"homepage": "https://github.com/skie"
}
],
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"cakephp/cakephp-codesniffer": "^5.0"
},
"autoload": {
"psr-4": {
"SignalHandler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SignalHandler\\Test\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"cs-fix": "phpcbf --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"stan": "phpstan analyse src/ tests/",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^2.0 && mv composer.backup composer.json",
"stan-rebuild-baseline": "phpstan analyse --configuration phpstan.neon --error-format baselineNeon src/ > phpstan-baseline.neon"
},
"extra": {
"installer-name": "SignalHandler"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}