-
Notifications
You must be signed in to change notification settings - Fork 51
/
composer.dev.json
29 lines (29 loc) · 1.01 KB
/
composer.dev.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
{
"name": "klaviyo/magento2-extension-dev",
"description": "The local development composer file. This is used for local and continuous integration setup/testing.",
"type": "magento2-module",
"version": "4.2.0",
"autoload": {
"psr-4": {
"Klaviyo\\Reclaim\\": ""
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.5",
"10up/wp_mock": "^0.5.0",
"yoast/phpunit-polyfills": "^1.0",
"squizlabs/php_codesniffer": "^3.11.0",
"phpcompatibility/php-compatibility": "dev-develop"
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}