-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.77 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.77 KB
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
{
"name": "built-fast/wp-cli-vector-archive",
"description": "WP-CLI commands for creating, validating, and inspecting Vector archives",
"type": "wp-cli-package",
"license": "proprietary",
"require": {
"php": "^8.3",
"wp-cli/wp-cli": "^2.12"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^12.0",
"wp-cli/db-command": "^2",
"wp-cli/entity-command": "^2",
"wp-cli/extension-command": "^2",
"wp-cli/wp-cli-tests": "^5"
},
"extra": {
"commands": [
"vector-archive export",
"vector-archive manifest",
"vector-archive validate",
"vector-archive info"
]
},
"config": {
"process-timeout": 7200,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"johnpbloch/wordpress-core-installer": true,
"phpstan/extension-installer": true
},
"lock": false
},
"autoload": {
"psr-4": {
"Vector\\Archive\\": "src/"
},
"files": [
"vector-archive-command.php"
]
},
"autoload-dev": {
"psr-4": {
"Vector\\Archive\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"behat": "run-behat-tests",
"behat-rerun": "rerun-behat-tests",
"lint": "run-linter-tests",
"phpstan": "phpstan analyse --configuration=phpstan.neon.dist",
"phpunit": "run-php-unit-tests",
"prepare-tests": "install-package-tests",
"test": [
"@lint",
"@phpstan",
"@phpunit",
"@behat"
]
}
}