|
1 | 1 | { |
2 | | - "name": "wp-cli/package-command", |
3 | | - "type": "wp-cli-package", |
4 | | - "description": "Lists, installs, and removes WP-CLI packages.", |
5 | | - "homepage": "https://github.com/wp-cli/package-command", |
6 | | - "license": "MIT", |
7 | | - "authors": [ |
8 | | - { |
9 | | - "name": "Daniel Bachhuber", |
10 | | - |
11 | | - "homepage": "https://runcommand.io" |
12 | | - } |
13 | | - ], |
14 | | - "require": { |
15 | | - "ext-json": "*", |
16 | | - "composer/composer": "^1.10.23 || ~2.2.17", |
17 | | - "wp-cli/wp-cli": "^2.8" |
18 | | - }, |
19 | | - "require-dev": { |
20 | | - "wp-cli/scaffold-command": "^1 || ^2", |
21 | | - "wp-cli/wp-cli-tests": "^4" |
22 | | - }, |
23 | | - "config": { |
24 | | - "process-timeout": 7200, |
25 | | - "sort-packages": true, |
26 | | - "allow-plugins": { |
27 | | - "dealerdirect/phpcodesniffer-composer-installer": true, |
28 | | - "johnpbloch/wordpress-core-installer": true |
29 | | - } |
30 | | - }, |
31 | | - "extra": { |
32 | | - "branch-alias": { |
33 | | - "dev-main": "2.x-dev" |
34 | | - }, |
35 | | - "bundled": true, |
36 | | - "commands": [ |
37 | | - "package", |
38 | | - "package browse", |
39 | | - "package install", |
40 | | - "package list", |
41 | | - "package update", |
42 | | - "package uninstall" |
43 | | - ] |
44 | | - }, |
45 | | - "autoload": { |
46 | | - "classmap": [ |
47 | | - "src/" |
48 | | - ], |
49 | | - "files": [ |
50 | | - "package-command.php" |
51 | | - ] |
52 | | - }, |
53 | | - "minimum-stability": "dev", |
54 | | - "prefer-stable": true, |
55 | | - "scripts": { |
56 | | - "behat": "run-behat-tests", |
57 | | - "behat-rerun": "rerun-behat-tests", |
58 | | - "lint": "run-linter-tests", |
59 | | - "phpcs": "run-phpcs-tests", |
60 | | - "phpcbf": "run-phpcbf-cleanup", |
61 | | - "phpunit": "run-php-unit-tests", |
62 | | - "prepare-tests": "install-package-tests", |
63 | | - "test": [ |
64 | | - "@lint", |
65 | | - "@phpcs", |
66 | | - "@phpunit", |
67 | | - "@behat" |
68 | | - ] |
69 | | - }, |
70 | | - "support": { |
71 | | - "issues": "https://github.com/wp-cli/package-command/issues" |
| 2 | + "name": "wp-cli/package-command", |
| 3 | + "type": "wp-cli-package", |
| 4 | + "description": "Lists, installs, and removes WP-CLI packages.", |
| 5 | + "homepage": "https://github.com/wp-cli/package-command", |
| 6 | + "license": "MIT", |
| 7 | + "authors": [ |
| 8 | + { |
| 9 | + "name": "Daniel Bachhuber", |
| 10 | + |
| 11 | + "homepage": "https://runcommand.io" |
| 12 | + } |
| 13 | + ], |
| 14 | + "require": { |
| 15 | + "ext-json": "*", |
| 16 | + "composer/composer": "^1.10.23 || ^2.2.17", |
| 17 | + "wp-cli/wp-cli": "^2.8" |
| 18 | + }, |
| 19 | + "require-dev": { |
| 20 | + "wp-cli/scaffold-command": "^1 || ^2", |
| 21 | + "wp-cli/wp-cli-tests": "^4" |
| 22 | + }, |
| 23 | + "config": { |
| 24 | + "process-timeout": 7200, |
| 25 | + "sort-packages": true, |
| 26 | + "allow-plugins": { |
| 27 | + "dealerdirect/phpcodesniffer-composer-installer": true, |
| 28 | + "johnpbloch/wordpress-core-installer": true |
72 | 29 | } |
| 30 | + }, |
| 31 | + "extra": { |
| 32 | + "branch-alias": { |
| 33 | + "dev-main": "2.x-dev" |
| 34 | + }, |
| 35 | + "bundled": true, |
| 36 | + "commands": [ |
| 37 | + "package", |
| 38 | + "package browse", |
| 39 | + "package install", |
| 40 | + "package list", |
| 41 | + "package update", |
| 42 | + "package uninstall" |
| 43 | + ] |
| 44 | + }, |
| 45 | + "autoload": { |
| 46 | + "classmap": [ |
| 47 | + "src/" |
| 48 | + ], |
| 49 | + "files": [ |
| 50 | + "package-command.php" |
| 51 | + ] |
| 52 | + }, |
| 53 | + "minimum-stability": "dev", |
| 54 | + "prefer-stable": true, |
| 55 | + "scripts": { |
| 56 | + "behat": "run-behat-tests", |
| 57 | + "behat-rerun": "rerun-behat-tests", |
| 58 | + "lint": "run-linter-tests", |
| 59 | + "phpcs": "run-phpcs-tests", |
| 60 | + "phpcbf": "run-phpcbf-cleanup", |
| 61 | + "phpunit": "run-php-unit-tests", |
| 62 | + "prepare-tests": "install-package-tests", |
| 63 | + "test": [ |
| 64 | + "@lint", |
| 65 | + "@phpcs", |
| 66 | + "@phpunit", |
| 67 | + "@behat" |
| 68 | + ] |
| 69 | + }, |
| 70 | + "support": { |
| 71 | + "issues": "https://github.com/wp-cli/package-command/issues" |
| 72 | + } |
73 | 73 | } |
0 commit comments