-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
79 lines (79 loc) · 2.1 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
{
"name": "thefrosty/wp-upgrade-task-runner",
"type": "wordpress-plugin",
"description": "A WordPress plugin for developers to write custom migration tasks.",
"license": "MIT",
"authors": [
{
"name": "Austin Passy",
"email": "[email protected]",
"homepage": "https://austin.passy.co",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/thefrosty/wp-upgrade-task-runner/issues"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.1"
},
"process-timeout": 600,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"pimple/pimple": "^3.5",
"symfony/http-foundation": "~6.4.14 || ^7.1.7",
"thefrosty/wp-utilities": "^3.3"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"ext-simplexml": "*",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^10",
"roots/wordpress": "~6.1",
"slevomat/coding-standard": "^8.8",
"squizlabs/php_codesniffer": "^3.7",
"wp-cli/wp-cli-bundle": "^2.4",
"wp-coding-standards/wpcs": "dev-develop",
"wp-phpunit/wp-phpunit": "~6.1",
"yoast/phpunit-polyfills": "^2.0.0"
},
"autoload": {
"psr-4": {
"TheFrosty\\WpUpgradeTaskRunner\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TheFrosty\\Tests\\WpUpgradeTaskRunner\\": "tests/unit"
}
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"post-install-cmd": [
"@install-codestandards"
],
"phpcs": [
"bash ./vendor/thefrosty/wp-utilities/bin/phpcs.sh"
],
"phpunit": [
"./vendor/bin/phpunit --colors --coverage-html ./tests/results && php ./tests/clover-results.php ./tests/clover.xml 01"
],
"tests": [
"@phpcs",
"@phpunit"
]
}
}