-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
59 lines (57 loc) · 1.4 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
{
"authors": [
{
"email": "[email protected]",
"name": "Yvan E. Watchman",
"role": "Developer"
}
],
"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": "*",
"php": "^8.2",
"illuminate/support": "^11.40",
"illuminate/database": "^11.40",
"guzzlehttp/guzzle": "^7.9",
"jeremykendall/php-domain-parser": "^6.3",
"symfony/dom-crawler": "^7.2",
"symfony/css-selector": "^7.2"
},
"type": "library",
"require-dev": {
"laravel/pint": "^1.20",
"pestphp/pest": "^3.7",
"orchestra/testbench": "^9.9"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}