-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.25 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
{
"name": "aivec/welcart-settlement-modules",
"description": "This package is for easy creation of Welcart 決済モジュール",
"type": "library",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Evan Shaw",
"email": "[email protected]"
}
],
"require": {
"aivec/welcart-generic": ">=5.2",
"aivec/cptm-client": "^3.2",
"psr/log": "^1.1"
},
"autoload": {
"psr-4": {
"Aivec\\Welcart\\SettlementModules\\": "src"
}
},
"require-dev": {
"wp-cli/i18n-command": "^2.2",
"aivec/phpcs-wp": "^2.0",
"aivec/codecept-docker": "^0.4.1",
"codeception/module-asserts": "^1.3"
},
"scripts": {
"lint": "phpcs -ps --standard=AivecWP-5 .",
"lint:fix": "phpcbf -ps --standard=AivecWP-5 .",
"i18n:update-pos": [
"wp i18n make-pot --domain=smodule . src/languages/messages.pot",
"find ./src/languages -name \"*.po\" | xargs -I % msgmerge -o % % src/languages/messages.pot"
],
"i18n:make-mo": "wp i18n make-mo src/languages",
"test": [
"codecept run unit",
"aivec-codecept codecept run wpunit"
],
"test:unit": "codecept run unit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}