-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
59 lines (59 loc) · 1.52 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
{
"name": "tlamedia/gtm-kit",
"description": "Development files for the GTM Kit",
"type": "wordpress-plugin",
"homepage": "https://gtmkit.com/",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "GTM Kit",
"email": "[email protected]",
"homepage": "https://gtmkit.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/awesomemotive/easy-digital-downloads"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"easydigitaldownloads/easy-digital-downloads": "^3.3",
"php-stubs/woocommerce-stubs": "^9.3",
"phpcompatibility/phpcompatibility-wp": "*",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"szepeviktor/phpstan-wordpress": "^v1.3.5",
"wp-coding-standards/wpcs": "^3.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"TLA_Media\\GTM_Kit\\": "src/"
}
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"phpstan": "phpstan analyze --ansi --memory-limit=2048M",
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf",
"no-dev:install": "composer install --no-dev",
"no-dev:update": "composer update --no-dev"
}
}