-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.63 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.63 KB
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
{
"name": "easycredit/woocommerce",
"description": "ratenkauf by easyCredit Plugin for wooCommerce",
"keywords": ["wordpress", "plugin"],
"homepage": "https://netzkollektiv.com",
"license": "MIT",
"authors": [
{
"name": "NETZKOLLEKTIV",
"email": "kontakt@netzkollektiv.com",
"homepage": "https://netzkollektiv.com"
}
],
"type": "wordpress-plugin",
"require": {
"netzkollektiv/easycredit-api-v3-php": "^2.0",
"guzzlehttp/psr7": "^2.7",
"psr/http-client": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~9",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.1",
"php-stubs/woocommerce-stubs": "^7.4",
"php-stubs/wordpress-tests-stubs": "^6.1",
"symplify/easy-coding-standard": "^11.2"
},
"config": {
"vendor-dir": "src/wc-easycredit/vendor",
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"prefix-namespaces": [
"sh -c 'test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/download/0.21.1/strauss.phar'",
"@php bin/strauss.phar",
"@php composer dump-autoload"
],
"post-install-cmd": [
"@prefix-namespaces"
],
"post-update-cmd": [
"@prefix-namespaces"
]
},
"extra": {
"strauss": {
"target_directory": "src/wc-easycredit/vendor-prefixed",
"exclude_from_prefix": {
"packages": [
"netzkollektiv/easycredit-api-v3-php"
]
},
"delete_vendor_packages": true,
"delete_vendor_files": true
}
}
}