Skip to content

Commit 5b64acc

Browse files
authored
Merge pull request #93 from diggy/update-package-framework,-require-WP-CLI-1.3.0
update package framework, require WP-CLI 1.3.0
2 parents dc2c6b3 + da8db94 commit 5b64acc

11 files changed

+433
-80
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Quick links: [Installation](#installation) | [Using](#using) | [Contributing](#c
99

1010
## Installation
1111

12-
Installing this package requires WP-CLI v1.2.1 or greater. Update to the latest stable release with `wp cli update`.
12+
Installing this package requires WP-CLI v1.3.0 or greater. Update to the latest stable release with `wp cli update`.
1313
Once you've done so, you can install this package with `wp package install [email protected]:diggy/polylang-cli.git`.
1414

1515
## Using

command.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
WP_CLI::error( sprintf( 'This WP-CLI package requires PHP version %s or higher.', '5.5' ) );
1414
}
1515

16-
if ( version_compare( WP_CLI_VERSION, '1.2.1', '<' ) ) {
17-
WP_CLI::error( sprintf( 'This WP-CLI package requires WP-CLI version %s or higher. Please visit %s', '1.2.1', 'https://wp-cli.org/#updating' ) );
16+
if ( version_compare( WP_CLI_VERSION, '1.3.0', '<' ) ) {
17+
WP_CLI::error( sprintf( 'This WP-CLI package requires WP-CLI version %s or higher. Please visit %s', '1.3.0', 'https://wp-cli.org/#updating' ) );
1818
}
1919

2020
# api, cli

composer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@
1313
}
1414
],
1515
"minimum-stability": "dev",
16+
"prefer-stable": true,
1617
"autoload": {
1718
"files": ["command.php"]
1819
},
1920
"require": {
20-
"wp-cli/wp-cli": "~1.2.1"
21+
"wp-cli/wp-cli": "~1.3.0"
2122
},
2223
"require-dev": {
2324
"behat/behat": "~2.5"
@@ -86,7 +87,7 @@
8687
"Development"
8788
],
8889
"installation": {
89-
"body": "Installing this package requires WP-CLI v1.2.1 or greater. Update to the latest stable release with `wp cli update`. \nOnce you've done so, you can install this package with `wp package install [email protected]:diggy/polylang-cli.git`."
90+
"body": "Installing this package requires WP-CLI v1.3.0 or greater. Update to the latest stable release with `wp cli update`. \nOnce you've done so, you can install this package with `wp package install [email protected]:diggy/polylang-cli.git`."
9091
},
9192
"development": {
9293
"body": "### Behat Tests\nTo run the Behat tests for polylang-cli, `cd` into the package directory and run `$ ./vendor/bin/behat --expand` from the command line. To run a specific group of tests use the `tags` parameter; e.g.: `$ ./vendor/bin/behat --expand --tags @pll-lang`"

composer.lock

+19-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)