-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
47 lines (47 loc) · 1.02 KB
/
composer.json
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
{
"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": "[email protected]"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpspec/phpspec": "^5.1|^6.1|^7.1",
"freedsx/asn1": "^0.4.0",
"friends-of-phpspec/phpspec-code-coverage": "^4.3|^6.1",
"phpstan/phpstan": "^0.12"
},
"suggest": {
"ext-openssl": "For SSL/TLS support.",
"freedsx/asn1": "For ASN.1 based message queues."
},
"autoload": {
"psr-4": {"FreeDSx\\Socket\\": "src/FreeDSx/Socket"}
},
"autoload-dev": {
"psr-4": {"fixture\\FreeDSx\\Socket\\": "tests/fixture/FreeDSx/Socket"}
},
"scripts": {
"test-coverage": [
"phpspec run --no-interaction -c phpspec.cov.yml"
],
"test": [
"phpspec run --no-interaction"
],
"analyse": [
"phpstan analyse"
]
}
}