-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
84 lines (84 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "dingo-d/wp-pest",
"description": "A package that will add WordPress integration test suite with Pest framework",
"keywords": [
"php",
"framework",
"pest",
"wordpress",
"integration",
"test",
"testing"
],
"license": "MIT",
"authors": [
{
"name": "Denis Žoljom",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/dingo-d/wp-sqlite-db"
}
],
"require": {
"ext-json": "*",
"ext-zip": "*",
"php": "^7.4 || ^8.0",
"aaemnnosttv/wp-sqlite-db": "^1.4.0",
"guzzlehttp/guzzle": "^7.4",
"pestphp/pest": "^1.2",
"symfony/filesystem": "^5.4",
"yoast/phpunit-polyfills": "^1.0",
"yoast/wp-test-utils": "^1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/php-compatibility": "^9",
"phpstan/phpstan": "^1.6",
"phpstan/phpstan-symfony": "^1.2",
"squizlabs/php_codesniffer": "^3.6.0",
"zenstruck/console-test": "^1.3"
},
"autoload": {
"psr-4": {
"MadeByDenis\\WpPestIntegrationTestSetup\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MadeByDenis\\WpPestIntegrationTestSetup\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"bin": [
"bin/wp-pest"
],
"scripts": {
"test:types": "@php ./vendor/bin/phpstan",
"test:style": "@php ./vendor/bin/phpcs",
"test:unit": "@php ./vendor/bin/pest",
"test:coverage": "@php ./vendor/bin/pest --coverage",
"test": [
"@test:style",
"@test:types",
"@test:unit"
]
},
"scripts-descriptions": {
"test:types": "Run the PHPStan script cagainst the entire codebase.",
"test:style": "Run the PHPCS script against the entire codebase.",
"test:unit": "Run unit tests.",
"test:coverage": "Run unit tests with code coverage.",
"test": "Run all checks and tests."
},
"config": {
"allow-plugins": {
"composer/installers": true,
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}