-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
60 lines (60 loc) · 1.39 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
{
"name": "webdevstudios/constant-contact-woocommerce",
"description": "Integrate Constant Contact and WooCommerce",
"type": "wordpress-plugin",
"autoload": {
"psr-4": {
"WebDevStudios\\CCForWoo\\": "src/"
}
},
"extra": {
"phpcodesniffer-search-depth": 5
},
"scripts": {
"test": [ "./vendor/bin/phpunit" ],
"generate-fixtures": [ "@php ./tests/cypress/bin/generate-cypress-fixtures.php" ],
"install-codestandards": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
"lint": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --standard=phpcs.xml.dist",
"post-install-cmd": [
"@install-codestandards"
],
"post-update-cmd": [
"@install-codestandards"
]
},
"autoload-dev": {
"psr-4": {
"WebDevStudios\\CCForWoo\\Tests\\": "tests/"
}
},
"require": {
"webdevstudios/oops-wp": "^1.0",
"composer/installers": "^2.2"
},
"archive": {
"exclude": [
".gitignore",
"!vendor/*",
"node_modules",
"tests",
"cypress.*",
"phpunit.xml",
"README.md",
"phpcs.xml.dist",
"tags"
]
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"10up/wp_mock": "^0.4.2",
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"squizlabs/php_codesniffer": "^3.8"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}