-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (42 loc) · 896 Bytes
/
composer.json
File metadata and controls
46 lines (42 loc) · 896 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "phpgt/daemon",
"description": "Background script execution with cross-platform compatible streaming.",
"require": {
"php": ">=8.1",
"ext-pcntl": "*"
},
"require-dev": {
"phpstan/phpstan": "^v1.10",
"phpunit/phpunit": "^10.5",
"phpmd/phpmd": "^2.13",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4":{
"Gt\\Daemon\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Gt\\Daemon\\Test\\": "./test/phpunit"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --configuration phpunit.xml",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=512M --level 6 src",
"phpcs": "vendor/bin/phpcs src --standard=phpcs.xml",
"phpmd": "vendor/bin/phpmd src/ text phpmd.xml",
"test": [
"@phpunit",
"@phpstan",
"@phpcs",
"@phpmd"
]
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}