forked from DNSMadeEasy/dme-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.29 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
{
"name": "returnearly/dnsmadeeasy",
"description": "PHP SDK for the DNS Made Easy API",
"type": "library",
"require": {
"ext-json": "^7.4|^8.0",
"php": "^7.4|^8.0",
"ext-mbstring": "^7.4|^8.0",
"psr/container": "^2.0",
"psr/http-client-implementation": "^1.0",
"guzzlehttp/psr7": "^2.0",
"psr/log": "^3.0",
"spatie/enum": "^3.6",
"guzzlehttp/guzzle": ">=6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"php-http/mock-client": "^1.4",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.5",
"monolog/monolog": "^3.0",
"symfony/var-dumper": "^5.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"autoload": {
"psr-4": {
"DnsMadeEasy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DnsMadeEasyTest\\": "test/"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
},
"license": "MIT",
"authors": [
{
"name": "Jessica Smith",
"email": "[email protected]"
}
],
"minimum-stability": "stable"
}