-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
executable file
·74 lines (74 loc) · 2.49 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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "tawk/widget",
"description": "tawk.to - free live chat software for your website",
"type": "magento2-module",
"keywords": [
"magento 2",
"tawk",
"tawkto",
"live chat",
"messaging",
"b2c communication tool",
"support tool",
"helpdesk",
"agents"
],
"homepage": "https://www.tawk.to/",
"support": {
"email": "[email protected]",
"issues": "https://github.com/tawk/tawk-magento-2/issues"
},
"version": "1.6.1",
"license": [
"OSL-3.0"
],
"require": {
"php": ">=5.6.0",
"tawk/url-utils": "^2.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Tawk\\Widget\\": ""
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"magento/magento-coding-standard": "^17.0",
"phpcompatibility/php-compatibility": "^9.3",
"magento/framework": "^103.0",
"magento/module-backend": "^102.0",
"magento/module-customer": "^103.0"
},
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths vendor/magento/magento-coding-standard/,vendor/phpcompatibility/php-compatibility)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths vendor/magento/magento-coding-standard/,vendor/phpcompatibility/php-compatibility)"
],
"build:dev": "composer install",
"build:prod": "composer install --no-dev",
"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;",
"package": "composer run clean && mkdir -p ./tmp/tawkmagento2 && cp -r ./view ./tmp/tawkmagento2 && cp -r ./etc ./tmp/tawkmagento2 && cp -r ./Setup ./tmp/tawkmagento2 && cp -r ./Model ./tmp/tawkmagento2 && cp -r ./Controller ./tmp/tawkmagento2 && cp -r ./Block ./tmp/tawkmagento2 && cp -r ./Helper ./tmp/tawkmagento2 && cp ./registration.php ./tmp/tawkmagento2 && cp ./composer.json ./tmp/tawkmagento2 && cp README.md ./tmp/tawkmagento2 && (cd ./tmp && zip -9 -rq ./tawkmagento2.zip ./tawkmagento2)",
"clean": "rm -rf ./tmp"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
},
"tawk-url-utils": {
"type": "vcs",
"url": "https://github.com/tawk/tawk-url-utils.git"
}
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
}
}