-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 839 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 839 Bytes
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
{
"name": "tawk/tawk-opencart4",
"description": "tawk.to extension module for Opencart 4",
"version": "1.1.3",
"type": "project",
"license": "GPL3",
"require": {
"tawk/url-utils": "2.0.1"
},
"require-dev": {
"phpunit/phpunit": "^11.2",
"php-webdriver/webdriver": "^1.15"
},
"autoload-dev": {
"psr-4": {
"Tawk\\Test\\": "test"
}
},
"scripts": {
"release": "composer run build:prod && composer run package",
"build:dev": "composer install",
"build:prod": "composer install --no-dev",
"package": "./build-package.sh",
"test": "phpunit"
},
"repositories": {
"tawk-url-utils": {
"type": "vcs",
"url": "https://github.com/tawk/tawk-url-utils.git"
}
}
}