-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
94 lines (94 loc) · 2 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "cocart-headless/cocart-jwt-authentication",
"description": "JWT Authentication for CoCart.",
"homepage": "https://cocartapi.com",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"wordpress-development",
"feature-plugin",
"plugin",
"woocommerce",
"woocommerce-api",
"woocommerce-extension",
"woocommerce-plugin",
"e-commerce",
"api",
"cart",
"rest",
"rest-api",
"JSON",
"decoupled",
"headless",
"headless-wordpress",
"headless-woocommerce",
"authentication",
"jwt"
],
"license": "GPL-3.0-only",
"prefer-stable": true,
"minimum-stability": "stable",
"authors": [
{
"name": "Contact",
"email": "[email protected]",
"homepage": "https://cocartapi.com"
}
],
"support": {
"issues": "https://github.com/cocart-headless/cocart-jwt-authentication/issues"
},
"funding": [
{
"type": "custom",
"url": "https://buy.polar.sh/polar_cl_IYhy2I5MvstK9VnlpuKShgw9bJY8jvM2GujAL2ZAzaJ"
}
],
"autoload": {
"classmap": [
"includes/"
]
},
"require": {
"composer/installers": "^2.0"
},
"require-dev": {
"cocart-headless/cocart-sniffs": "0.0.3",
"automattic/vipwpcs": "^3.0",
"phpstan/phpstan": "^2.0",
"szepeviktor/phpstan-wordpress": "^2.0",
"phpstan/extension-installer": "^1.4",
"php-stubs/woocommerce-stubs": "^9.1",
"php-stubs/wp-cli-stubs": "^2.10"
},
"scripts": {
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"phpcbf": [
"phpcbf . -p"
],
"phpstan": [
"phpstan analyse --memory-limit=2048M"
]
},
"extra": {
"scripts-description": {
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"prepend-autoloader": false,
"sort-packages": true
}
}