-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 1.16 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
{
"authors": [
{
"email": "ywatchman@cyberfusion.nl",
"name": "Yvan E. Watchman"
}
],
"autoload": {
"psr-4": {
"YWatchman\\LaravelEPP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"YWatchman\\LaravelEPP\\Tests\\": "tests/"
}
},
"description": "Laravel package to work with EPP (SIDN)",
"extra": {
"laravel": {
"aliases": {
"Epp": "YWatchman\\LaravelEPP\\Facade"
},
"providers": [
"YWatchman\\LaravelEPP\\ServiceProvider"
]
}
},
"license": "MIT",
"name": "ywatchman/laravel-epp",
"prefer-stable": true,
"require": {
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.0",
"illuminate/support": "^5.8|^6.0|^7.0|^8.0",
"illuminate/database": "^5.8|^6.0|^7.0|^8.0",
"jeremykendall/php-domain-parser": "^5.6",
"php": "^7.3",
"symfony/dom-crawler": "^5.0",
"symfony/css-selector": "^5.0"
},
"type": "library"
}