-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
33 lines (33 loc) · 1.07 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
{
"name": "drupal/tawkto",
"description": "tawk.to Live Chat module for Drupal 8 CMS",
"type": "drupal-module",
"license": "GPL-3.0-only",
"authors": [
{
"name": "tawk",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"tawk/url-utils": "2.0.2"
},
"scripts": {
"lint": "phpcs -p -s -v --runtime-set ignore_warnings_on_exit true .",
"lint:fix": "phpcbf -p -s -v .; err=$?; if [ $err -eq 1 ]; then exit 0; else exit $err; fi;",
"build:dev": "composer install",
"build:prod": "composer install --no-dev",
"package": "composer run clean && mkdir -p ./tawk_to && cp -rt ./tawk_to config src vendor composer.* tawk_to.* && zip -9 -rq ./tawk_to/tawk_to.zip ./tawk_to",
"clean": "rm -rf ./tawk_to"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10",
"drupal/coder": "^8.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}