-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
44 lines (44 loc) · 1009 Bytes
/
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": "ouun/zammad-wp",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"description": "Integrates Zammad Helpdesk into WordPress",
"homepage": "https://ouun.io",
"authors": [
{
"name": "Philipp Wellmer",
"email": "[email protected]"
}
],
"keywords": ["wordpress", "wordpress-block", "zammad", "helpdesk", "livechat", "support"],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:ouun/zammad-wp-pro.git"
}
],
"autoload": {
"psr-4": {
"ZammadWp\\": "includes/classes/"
}
},
"require": {
"php": ">=7.0 < 9.0",
"zammad/zammad-api-client-php": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"10up/wp_mock": "dev-trunk",
"10up/phpcs-composer": "dev-master",
"wp-coding-standards/wpcs": "*"
},
"scripts": {
"lint": "phpcs . -s",
"lint-fix": "phpcbf ."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}