-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1 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
{
"name": "vendidero/trusted-shops-easy-integration-for-woocommerce",
"description": "Trusted Shops Easy Integration for WooCommerce",
"homepage": "https://github.com/vendidero/trusted-shops-easy-integration-for-woocommerce",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"prefer-stable": true,
"version": "dev-main",
"minimum-stability": "dev",
"require": {
"automattic/jetpack-autoloader": "^2.6.0"
},
"require-dev": {
"phpunit/phpunit": "7.5.14",
"yoast/phpunit-polyfills": "^1.0",
"woocommerce/woocommerce-sniffs": "^0.1.3"
},
"config": {
"platform": {
"php": "7.1"
},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": true
},
"scripts": {
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"phpcbf": [
"phpcbf -p"
]
},
"autoload": {
"psr-4": {
"Vendidero\\TrustedShopsEasyIntegration\\": "src/"
}
}
}