-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.42 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
{
"name": "themeplate/tester",
"description": "Common for all packages",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Gene Alyson Fortunado Torcende",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"analyse": "themeplate analyse",
"lint": "themeplate lint",
"fix": "themeplate fix",
"test": "themeplate test",
"test:unit": "themeplate test --type unit",
"test:integration": "themeplate test --type integration"
},
"require": {
"php": "^7.4|^8.2",
"brain/monkey": "^2.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2|^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.6",
"phpunit/phpunit": "^9.5|^11.0",
"squizlabs/php_codesniffer": "^3.6",
"symfony/process": "^5.4|^7.0",
"szepeviktor/phpstan-wordpress": "^1.3",
"themeplate/cli": "^0.1.0|^1.0",
"wp-coding-standards/wpcs": "^2.3|^3.0",
"yoast/phpunit-polyfills": "^1.0|^2.0"
},
"autoload": {
"psr-4": {
"ThemePlate\\Tester\\": "src"
},
"files": [
"./commands.php"
]
},
"autoload-dev": {
"psr-4": {
"ThemePlate\\Tester\\Tests\\": "tests"
}
}
}