-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 828 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
{
"name": "thivinfo/nuki-smartlock",
"description": "Connect Your Nuki Smartlock to your WordPress website.",
"license": "GPL-3.0-or-later",
"homepage": "https://nuki-smartlock-for-wp.com/",
"type": "wordpress-plugin",
"require": {
"php": ">=7.0",
"phpunit/phpunit": "^9.5",
"phpunit/php-code-coverage": "^9.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"wp-coding-standards/wpcs": "*",
"automattic/vipwpcs": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"yoast/phpunit-polyfills": "^1.0"
},
"scripts": {
"test":"vendor/bin/phpunit",
"cs": "vendor/bin/phpcs",
"stan": "vendor/bin/phpstan analyze --memory-limit=400M",
"lint": [
"@cs",
"@stan"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}