-
Notifications
You must be signed in to change notification settings - Fork 72
/
composer.json
59 lines (59 loc) · 1.55 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "yswery/dns",
"description": "A DNS server implementation in pure PHP.",
"require-dev": {
"phpunit/phpunit": "~7.3",
"php-coveralls/php-coveralls": "~2.1",
"bamarni/composer-bin-plugin": "^1.3",
"humbug/box": ">=3.6",
"friendsofphp/php-cs-fixer": "^2.16"
},
"license": "MIT",
"authors": [
{
"name": "Yif Swery",
"email": "[email protected]"
},
{
"name": "Gary Saunders",
"email": "[email protected]"
},
{
"name": "Ivan Stanojevic",
"email": "[email protected]"
},
{
"name": "Samuel Williams",
"email": "[email protected]"
}
],
"require": {
"php": "~7.2",
"ext-json": "*",
"ext-SimpleXML": "*",
"badcow/dns": "^3.4",
"psr/log": "^1.0",
"react/socket": "~1.2",
"react/datagram": "^1.4",
"symfony/console": "^4.3",
"symfony/event-dispatcher": "^4.3",
"symfony/filesystem": "^4.3",
"symfony/property-access": "^4.3",
"vanilla/garden-cli": "^2.2"
},
"autoload": {
"psr-4": {
"yswery\\DNS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"yswery\\DNS\\Tests\\": "tests/"
}
},
"scripts": {
"build-server": "box compile -c server.box.json",
"build-console": "box compile -c console.box.json",
"build-installer": "box compile -c installer.box.json"
}
}