-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
26 lines (26 loc) · 1006 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
{
"name": "CondeNast/purgely",
"description": "Cache and purging management for WordPress sites fronted by Fastly.",
"type": "wordpress-plugin",
"require-dev": {
"phpunit/phpunit": "^4.0.0",
"10up/wp_mock": "dev-master",
"squizlabs/php_codesniffer": "~2.2",
"wp-coding-standards/wpcs": "~0.7.1",
"satooshi/php-coveralls": "dev-master"
},
"license": "MIT",
"authors": [
{
"name": "Zack Tollman",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"scripts": {
"test": "./vendor/bin/phpunit --colors=always",
"style": "./vendor/bin/phpcs --standard=ruleset.xml src/ purgely.php -s",
"post-install-cmd": "mkdir -p build/logs && ./vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs",
"post-update-cmd": "mkdir -p build/logs && ./vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs"
}
}