-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
36 lines (36 loc) · 1011 Bytes
/
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
{
"name": "digitalcube/c3-cloudfront-clear-cache",
"version": "0.0.0",
"type": "wordpress-plugin",
"require": {
"php": ">=7.4",
"aws/aws-sdk-php": "^3.261"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*",
"wp-phpunit/wp-phpunit": "5.7.2",
"phpunit/phpunit": "7.5.20",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
"psr-4": {
"C3_CloudFront_Cache_Controller\\" : "classes/",
"C3_CloudFront_Cache_Controller\\WP\\" : "classes/WP/",
"C3_CloudFront_Cache_Controller\\Test\\" : "tests/"
}
},
"scripts": {
"test": "phpunit",
"format": "phpcbf --standard=./.phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=./.phpcs.xml.dist",
"phpcs": "phpcs --standard=./.phpcs.xml.dist"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}