-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
55 lines (55 loc) · 1.62 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
{
"name": "dotdigital/dotdigital-for-woocommerce",
"version": "1.4.4",
"php": "^7.4 || ^8.0",
"require": {
"dotdigital/dotdigital-php": "^2.6",
"guzzlehttp/psr7": "^2.5",
"php-http/curl-client": "^2.3",
"guzzlehttp/guzzle": "^7.7",
"php-http/message": "^1.16"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*",
"phpunit/phpunit": "^9.5",
"brain/monkey": "^2.6",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"classmap": [
"admin/",
"includes/",
"public/",
"class-dotdigital-woocommerce-bootstrapper.php",
"vendor/dotdigital",
"vendor/php-http",
"vendor/guzzlehttp",
"vendor/psr",
"vendor/symfony",
"vendor/clue",
"vendor/ralouphie"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"scripts": {
"prefix-dependencies": [
"rm -rf build_prefixed",
"@php php-scoper.phar add-prefix --prefix=Dotdigital_Woo_Vendor --output-dir=./build_prefixed --force",
"composer du --working-dir build_prefixed --classmap-authoritative",
"rm build_prefixed/composer.json"
]
}
}