-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.12 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1.12 KB
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
{
"name": "beautifulplugins/utm-manager",
"description": "UTM Manager is a powerful and user-friendly WordPress plugin designed to help you efficiently track and manage UTM parameters across your website. With UTM Manager, you can effortlessly monitor the performance of your marketing campaigns, understand the source of your traffic, and gain valuable insights to optimize your strategies.",
"homepage": "https://beautifulplugins.com/utm-manager/",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=7.4"
},
"autoload": {
"psr-4": {
"UTMManager\\": "includes/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"scripts": {
"post-install-cmd": [
"composer dump-autoload"
],
"post-update-cmd": [
"composer dump-autoload"
],
"makepot": "wp --allow-root i18n make-pot . --include=*.php,assets,includes,templates --domain=utm-manager"
}
}