-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1.06 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
{
"name": "mattvb91/caddy-php",
"description": "Control your Caddy instance through PHP",
"type": "package",
"license": "MIT",
"scripts": {
"phpunit": "XDEBUG_MODE=coverage phpunit --testdox --coverage-clover=coverage.xml",
"phpstan": "phpstan analyse",
"codesniffer": "phpcs ./src ./tests/**/*.php --standard=./codesniffer.xml -p",
"codefixer": "phpcbf ./src ./tests/**/*.php --standard=./codesniffer.xml",
"rector": "rector process --dry-run",
"rector-fix": "rector process",
"phpmnd": "phpmnd ./src"
},
"autoload": {
"psr-4": {
"mattvb91\\CaddyPhp\\": "src/"
},
"files": [
"src/Functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"symfony/http-foundation": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^10",
"dms/phpunit-arraysubset-asserts": "^0.5.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"rector/rector": "^1.0",
"povils/phpmnd": "^3.5"
}
}