Skip to content

Commit a95705d

Browse files
authored
Merge pull request #114 from diggy/require-wp-cli-1-4-0
require wp-cli 1.4.0
2 parents e990e0b + f71853c commit a95705d

File tree

4 files changed

+37
-33
lines changed

4 files changed

+37
-33
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.3.0 or greater. Update to the latest stable release with `wp cli update`.
12+
Installing this package requires WP-CLI v1.4.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.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' ) );
16+
if ( version_compare( WP_CLI_VERSION, '1.4.0', '<' ) ) {
17+
WP_CLI::error( sprintf( 'This WP-CLI package requires WP-CLI version %s or higher. Please visit %s', '1.4.0', 'https://wp-cli.org/#updating' ) );
1818
}
1919

2020
# api, cli

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"files": ["command.php"]
1919
},
2020
"require": {
21-
"wp-cli/wp-cli": "~1.3.0"
21+
"wp-cli/wp-cli": "~1.4.0"
2222
},
2323
"require-dev": {
2424
"behat/behat": "~2.5"
@@ -91,7 +91,7 @@
9191
"Development"
9292
],
9393
"installation": {
94-
"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`."
94+
"body": "Installing this package requires WP-CLI v1.4.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`."
9595
},
9696
"development": {
9797
"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

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

0 commit comments

Comments
 (0)