-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
21 lines (21 loc) · 1019 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "uniwue-rz/yourls-original-url-regex-limiter",
"description": "This plugin allows administrators to limit the original URLs with regexes. It supports both whitelist and blacklist mode as well as granting specific users the ability to circumvent this limit.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Lucas Kinne",
"email": "lucas.kinne@uni-wuerzburg.de"
}
],
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpcompatibility/php-compatibility": "*"
},
"scripts": {
"post-install-cmd": "vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd": "vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"check-php-compatibility": "vendor/bin/phpcs -p original-url-regex-limiter --runtime-set testVersion 7.4- -d error_reporting='E_ALL&~E_DEPRECATED' --standard=PHPCompatibility"
}
}