-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.54 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.54 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "erwane/whep-client",
"description": "Webhooks handler for emailing providers.",
"type": "library",
"keywords": [
"webhook",
"emailing"
],
"homepage": "https://github.com/Erwane/whep-client",
"support": {
"issues": "https://github.com/Erwane/whep-client/issues",
"source": "https://github.com/Erwane/whep-client"
},
"license": "MIT",
"authors": [
{
"name": "Erwane",
"email": "erwane@phea.fr",
"homepage": "https://erwane-breton.fr"
}
],
"require": {
"php": "^8.1",
"ext-mbstring": "*",
"ext-json": "*",
"mlocati/ip-lib": "^1.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpro/grumphp": "^v2.0",
"phpunit/phpunit": "^10.5",
"symfony/var-dumper": "^v6.0"
},
"autoload": {
"psr-4": {
"WHEP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WHEP\\Test\\": "tests/",
"WHEP\\Provider\\": "tests/test_provider/"
}
},
"config": {
"platform-check": true,
"sort-packages": true,
"prefered-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true
}
},
"scripts": {
"cscheck": "php vendor/bin/phpcs -p -s src tests",
"csfix": "php vendor/bin/phpcbf src tests"
}
}