-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.08 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
{
"name": "initphp/socket",
"description": "Lightweight TCP, UDP, TLS and SSL socket server/client toolkit for PHP 8.1+.",
"type": "library",
"license": "MIT",
"keywords": [
"socket",
"tcp",
"udp",
"tls",
"ssl",
"stream",
"server",
"client",
"networking",
"initphp"
],
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "info@muhammetsafak.com.tr",
"role": "Developer",
"homepage": "https://www.muhammetsafak.com.tr"
}
],
"support": {
"issues": "https://github.com/InitPHP/Socket/issues",
"source": "https://github.com/InitPHP/Socket",
"docs": "https://github.com/InitPHP/Socket/tree/main/docs"
},
"require": {
"php": "^8.1",
"ext-sockets": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.11 || ^2.0",
"friendsofphp/php-cs-fixer": "^3.59"
},
"autoload": {
"psr-4": {
"InitPHP\\Socket\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InitPHP\\Socket\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=build/coverage.xml",
"stan": "phpstan analyse",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"qa": [
"@cs-check",
"@stan",
"@test"
]
},
"scripts-descriptions": {
"test": "Run the PHPUnit test suite.",
"test-coverage": "Run the PHPUnit test suite and emit a Clover coverage report.",
"stan": "Run PHPStan static analysis on src/.",
"cs-check": "Verify code style with PHP-CS-Fixer (no changes written).",
"cs-fix": "Auto-fix code style with PHP-CS-Fixer.",
"qa": "Run the full QA pipeline (cs-check, stan, test)."
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
}
}