-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 723 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 723 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
{
"name": "clue/socket-raw",
"description": "Simple and lightweight OOP wrapper for PHP's low-level sockets extension (ext-sockets).",
"keywords": ["socket", "stream", "datagram", "dgram", "client", "server", "ipv6", "tcp", "udp", "icmp", "unix", "udg"],
"homepage": "https://github.com/clue/socket-raw",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@clue.engineering"
}
],
"require": {
"php": ">=5.3",
"ext-sockets": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
},
"autoload": {
"psr-4": {
"Socket\\Raw\\": "src/"
}
}
}