-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "anktx/cloud-dns-client",
"description": "Cloud.ru DNS API Client",
"type": "library",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.2",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.62",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.5",
"infection/infection": "^0.29",
"kriswallsmith/buzz": "^1.2",
"nyholm/psr7": "^1.8",
"vlucas/phpdotenv": "v5.6"
},
"autoload": {
"psr-4": {
"Anktx\\Cloud\\Dns\\Client\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Anktx\\Cloud\\Dns\\Client\\Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"scripts": {
"analyse": "phpstan analyse -v --level 6 --no-progress ./src ./tests",
"cs-fix": "php-cs-fixer fix -v --diff --show-progress=dots",
"tests": "phpunit tests",
"infection": "infection --show-mutations --no-progress"
}
}