-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.52 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
{
"name": "fransik/certbot-dns-transip",
"type": "project",
"description": "Certbot hook to solve a DNS-01 challenge, by creating TXT records using the TransIP API.",
"homepage": "https://github.com/fransik/certbot-dns-transip",
"license": "MIT",
"authors": [
{
"name": "Frans Heeremans",
"email": "mail@fransik.nl",
"homepage": "https://github.com/fransik",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ^8.0",
"pear/net_dns2": "^1.5.2",
"transip/transip-api-php": "^6.6.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"phpstan/phpstan": "^0.12.76",
"phpunit/phpunit": "^9.5"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Fransik\\CertbotTransip\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fransik\\CertbotTransip\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"scripts": {
"code-coverage": "phpunit --coverage-clover=.build/coverage.xml",
"cs-check": "php-cs-fixer fix --diff --diff-format=udiff --dry-run --verbose",
"cs-fix": "php-cs-fixer fix",
"phpstan": "phpstan analyse --ansi",
"test": "phpunit"
},
"support": {
"issues": "https://github.com/fransik/certbot-dns-transip/issues",
"source": "https://github.com/fransik/certbot-dns-transip"
}
}