-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 1.93 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "frdl/rdap-server",
"type": "project",
"homepage" : "https://github.com/frdl/rdap-server",
"license": "MIT",
"description": "Rdap Server (OIDplus aware, with WHOIS-fallback/-remarks)",
"keywords": [
"rdap",
"server",
"whois",
"OIDplus",
"Frdlweb",
"oid",
"weid",
"php"
],
"authors": [
{
"name": "Hiqdev Team",
"homepage": "https://github.com/hiqdev/rdap/"
},{
"name": "Daniel Marschall",
"homepage": "https://github.com/danielmarschall"
},
{
"name": "Till Wehowski",
"email": "software@frdl.de",
"homepage": "https:\/\/webfan.de"
}
],
"config": {
"platform-check" : false
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2 | >=8.0",
"ext-json": "*",
"ext-intl": "*",
"vendor-patch/rdap": "*",
"hiqdev/rdap-whois-proxy": "*",
"monolog/monolog": "*",
"php-di/php-di": "*",
"slim/psr7": "*",
"slim/slim": "*",
"symfony/cache" : "*",
"jeremykendall/php-domain-parser" : "*",
"bakame/twig-domain-parser-extension": "*",
"frdl/shutdown-helper" : "*",
"frdl/php-floodprotection" : "*",
"env/dotenv" : "*",
"frdl/oid-connect-rdap" : ">=v0.0.4",
"league/uri": "*",
"marc-mabe/php-enum": "*",
"jeroendesloovere/vcard": "*",
"ext-mbstring": "*",
"ext-intl": "*",
"doctrine/annotations": "*",
"symfony/serializer": "*",
"symfony/property-info": "*",
"symfony/property-access": "*",
"sabre/vobject": "*",
"guzzlehttp/guzzle": "*",
"guzzlehttp/psr7": "*"
},
"require-dev": {
"hiqdev/hidev-php": "*",
"hiqdev/hidev-hiqdev": "dev-master"
},
"autoload": {
"classmap" : ["classes/"],
"psr-4": {
"App\\": "src/"
}
},
"scripts": {
"pre-autoload-dump" : "php -r \"unlink('vendor/hiqdev/rdap/src/Domain/Constant/Status.php');\"",
"start": "php -S localhost:8080 -t public public/index.php"
}
}