-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.37 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
{
"name": "lubusin/munim",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"description": "Simple invoices",
"homepage": "https://munim.com",
"require": {
"composer/installers": "~1.2",
"cmb2/cmb2": "dev-master",
"alexis-magina/cmb2-field-post-search-ajax": "dev-master",
"dompdf/dompdf": "^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*",
"phpcompatibility/phpcompatibility-wp": "*"
},
"keywords": [
"wordpress",
"plugin",
"invoice",
"invoicing"
],
"support": {
"issues": "https://github.com/lubusIN/munim/"
},
"autoload": {
"classmap": [
"includes/"
],
"files": [
"includes/functions.php"
]
},
"scripts": {
"phpcs": [
"phpcs -s -p ."
],
"phpcbf": [
"phpcbf -p ."
]
},
"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"
},
"installer-paths": {
"vendor/{$name}/": [
"cmb2/cmb2",
"alexis-magina/cmb2-field-post-search-ajax"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}