-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
85 lines (85 loc) · 1.78 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
{
"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-2.0",
"prefer-stable": true,
"minimum-stability": "stable",
"authors": [
{
"name": "Contact",
"email": "hello@cocartapi.com",
"homepage": "https://cocartapi.com"
}
],
"support": {
"issues": "https://github.com/cocart-headless/cocart-jwt-authentication/issues"
},
"autoload": {
"classmap": [
"includes/"
]
},
"require": {
"composer/installers": "^2.0"
},
"require-dev": {
"cocart-headless/cocart-sniffs": "0.0.3",
"automattic/vipwpcs": "^3.0",
"phpstan/phpstan": "^1.11",
"szepeviktor/phpstan-wordpress": "^1.3",
"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
}
}
}