-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.4 KB
/
Copy pathcomposer.json
File metadata and controls
60 lines (60 loc) · 1.4 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
{
"name": "freedsx/socket",
"description": "A simple socket library for FreeDSx",
"homepage": "https://github.com/FreeDSx/Socket",
"keywords": [
"Socket",
"TCP",
"UDP"
],
"license": "MIT",
"authors": [
{
"name": "Chad Sikorra",
"email": "Chad.Sikorra@gmail.com"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"freedsx/asn1": ">=0.4, <1.0",
"phpunit/phpunit": "^11.5",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/extension-installer": "^1.4",
"swoole/ide-helper": "^6.0"
},
"suggest": {
"ext-openssl": "For SSL/TLS support.",
"ext-swoole": "For the coroutine-aware SwooleTimerEnforcer write timeout strategy.",
"freedsx/asn1": "For ASN.1 based message queues."
},
"autoload": {
"psr-4": {"FreeDSx\\Socket\\": "src/FreeDSx/Socket"}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\FreeDSx\\Socket\\": "tests/unit"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"test-unit": [
"@php -d xdebug.mode=off vendor/bin/phpunit --testsuite unit"
],
"test-coverage": [
"@php -d xdebug.mode=coverage vendor/bin/phpunit --testsuite unit --coverage-clover=coverage.xml"
],
"analyse": [
"phpstan analyse"
],
"analyse-tests": [
"phpstan analyse -c phpstan.tests.neon"
]
}
}