-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.54 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
{
"name": "sandwave-io/epp-client-php",
"description": "A base EPP Client that complies with RFC 5730, 5731 and 5733.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jesse Kramer",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-dom": "*",
"ext-libxml": "*",
"nesbot/carbon": "~1.39.1",
"psr/log": "^1.1.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14.4",
"phpstan/phpstan": "^1.10.6",
"phpunit/phpunit": "^10.0.15",
"sandwave-io/php-cs-fixer-config": "^1.0"
},
"autoload": {
"psr-4": {
"SandwaveIo\\EppClient\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"SandwaveIo\\EppClient\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"kylekatarnls/update-helper": false
}
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"@test:types",
"@lint",
"@test:unit"
],
"test:unit": [
"vendor/bin/phpunit --coverage-text"
],
"test:types": [
"vendor/bin/phpstan analyze"
],
"lint": [
"vendor/bin/php-cs-fixer fix --dry-run --diff --show-progress=none -vvv"
],
"lint:fix": [
"vendor/bin/php-cs-fixer fix"
]
}
}