forked from acobster/wp-yaml-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.13 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
{
"name": "acobster/wp-cli-yaml-fixtures",
"description": "Define WordPress database snapshots as simple YAML files",
"license": "MIT",
"type": "wp-cli-command",
"authors": [
{
"name": "Coby Tamayo",
"email": "ctamayo@sitecrafting.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.0",
"symfony/yaml": "^3.4",
"ircmaxell/random-lib": "^1.1@dev"
},
"require-dev": {
"10up/wp_mock": "^0.3",
"behat/behat": "^3.4",
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "^0.14"
},
"autoload": {
"psr-4": {
"YamlFixtures\\": "src/YamlFixtures"
}
},
"scripts": {
"test": [
"./vendor/bin/phpunit"
],
"sniff-summary": [
"./vendor/bin/phpcs --report=summary --standard=./phpcs.xml yaml-fixtures.php test src"
],
"sniff": [
"./vendor/bin/phpcs --standard=./phpcs.xml yaml-fixtures.php test src"
],
"sniff-fix": [
"./vendor/bin/phpcbf --standard=./phpcs.xml yaml-fixtures.php test src"
]
}
}