-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.08 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
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
{
"name": "zone-eu/wildduck-php-client",
"description": "PHP client for Wildduck email server API",
"type": "library",
"license": "EUPL-1.1",
"version": "2.0.20",
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"symfony/http-foundation": "^7.4.3",
"guzzlehttp/guzzle": "^7.10"
},
"autoload": {
"psr-4": {
"Zone\\Wildduck\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"kurbar/wildduck-test-server": "^0.8.7",
"phpunit/phpunit": "^12.5.4",
"rector/rector": "^2.3.0",
"phpstan/phpstan": "^2.1.33",
"squizlabs/php_codesniffer": "^4.0.1"
},
"scripts": {
"test": "phpunit --colors=always",
"rector": "rector process src tests --set php85",
"phpstan": "phpstan --memory-limit=1G analyse src tests",
"cs-check": "phpcs --standard=PSR12 src tests",
"cs-fix": "phpcbf --standard=PSR12 src tests"
}
}