-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.84 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
{
"name": "centralnicgroup-opensource/rtldev-middleware-php-sdk",
"type": "library",
"description": "API connector library for the insanely fast CNIC API Backends (HEXONET, CNR former RRPproxy)",
"keywords": [
"SDK",
"api",
"connector",
"hexonet",
"rrpproxy",
"centralnic",
"reseller",
"cnic",
"domain",
"ssl",
"domain",
"isp",
"ispapi",
"cert",
"dns",
"backorder",
"premium",
"preregistration",
"registration",
"application"
],
"homepage": "https://github.com/centralnicgroup-opensource/rtldev-middleware-php-sdk",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "Kai Schwarz",
"email": "[email protected]",
"homepage": "https://centralnicgroup.com",
"role": "Chief Development Officer"
}
],
"require": {
"php": ">=7.3.0",
"centralnic-reseller/idn-converter": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/extension-installer": "^1.4"
},
"autoload": {
"psr-4": {
"CNIC\\": "src/"
}
},
"scripts": {
"docs": "rm -rf build docs;test ! -e phpdoc.phar && wget https://phpdoc.org/phpDocumentor.phar -O phpdoc.phar && chmod +x phpdoc.phar;./phpdoc.phar",
"codefix": "phpcbf --ignore=\"*/vendor/*\" --standard=.github/linters/phpcs.xml -q src tests",
"lint": "phpcs --ignore=\"*/vendor/*\" --standard=.github/linters/phpcs.xml -q src tests",
"test": "XDEBUG_MODE=coverage phpunit --coverage-html=./reports/html --debug",
"phpstan": "phpstan analyse -c .github/linters/phpstan.neon"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"stability-flags": {
},
"platform-dev": {
}
}