-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 2.08 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
{
"name": "towa/gebrueder-weiss-woocommerce",
"description": "Gebrüder Weiss Woocommerce Plugin",
"type": "wordpress-plugin",
"require": {
"twig/twig": "^3.3.10",
"guzzlehttp/guzzle": "^7.4.2",
"vlucas/phpdotenv": "^5.4.1",
"league/oauth2-client": "^2.6.1",
"towa/gbw-sdk": "^1.3.4"
},
"homepage": "https://www.towa-digital.com",
"require-dev": {
"php": "^7.3|^8.0",
"phpunit/phpunit": "^9.5.20",
"squizlabs/php_codesniffer": "^3.6.2",
"wp-coding-standards/wpcs": "^2.3.0",
"mockery/mockery": "^1.5.0",
"yoast/phpunit-polyfills": "^1.0.3",
"php-stubs/wordpress-stubs": "^5.9",
"php-stubs/wordpress-tests-stubs": "^5.8",
"php-stubs/woocommerce-stubs": "^6.0"
},
"license": "GPL-3.0-only",
"authors": [
{
"name": "Martin Welte",
"email": "martin.welte@towa.at"
}
],
"support": {
"issues": "https://github.com/towa-digital/gebrueder-weiss-woocommerce/issues",
"source": "https://github.com/towa-digital/gebrueder-weiss-woocommerce",
"docs": "https://timber.github.io/docs/"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Towa\\GebruederWeissWooCommerce\\": "includes/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\" :"tests/"
}
},
"scripts": {
"fix-cs": "phpcbf",
"lint": "phpcs",
"test": "phpunit",
"create-installable": [
"composer install --no-dev --no-interaction --no-suggest --no-progress --optimize-autoloader --prefer-dist",
"rm -rf ./husky/ || true",
"rm -rf ./git/ || true",
"rm -rf ./bin/ || true",
"rm -rf tests/ || true",
"rm -rf docs/ || true",
"rm .editorconfig || true",
"rm .gitignore || true",
"rm .phpcs.xml || true",
"rm package.json || true",
"rm package-lock.json || true",
"rm phpunit.xml.dist || true",
"rm README.md || true",
"rm commitlint.config.js || true"
]
}
}