-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.35 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
{
"name": "werepack/repack-for-woocommerce",
"description": "Get permission from your customers to reuse already used shipping packaging. As a shop owner it is an easy way to save resources, money and above all to protect the environment.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"homepage": "https://werepack.org",
"authors": [
{
"name": "WeRePack Initiative",
"email": "hello@werepack.org"
},
{
"name": "Philipp Wellmer",
"email": "philipp@ouun.io"
}
],
"require-dev": {
"wp-coding-standards/wpcs": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1"
},
"scripts": {
"lint": [
"phpcs --colors --ignore=index.php,vendor,resources,storage,dist --extensions=php --standard=WordPress-Extra ."
],
"fix": [
"phpcbf -q --ignore=index.php,vendor,resources,storage,dist --extensions=php --standard=WordPress-Extra ."
],
"translate": [
"wp i18n make-pot . ./languages/repack-for-woocommerce.pot --domain=\"repack-for-woocommerce\" --exclude==\"vendor\""
]
},
"require": {
"ext-json": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}