Skip to content
This repository was archived by the owner on May 14, 2021. It is now read-only.

Commit e5ab5b0

Browse files
committed
Version 1.1.2
* Added support for Windows * More readable feedback
1 parent 8c89605 commit e5ab5b0

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ $ php wordpress install [options]
1111

1212
### Requirements
1313
* PHP 7
14+
* PHP [ZipArchive](http://php.net/manual/en/class.ziparchive.php)
1415
* [Composer](https://getcomposer.org/)
15-
* [cURL](https://curl.haxx.se/docs/manpage.html)
16-
* macOS or Ubuntu
1716

1817
### Installation
1918
Install this package globally

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "matthijs110/wordpress-downloader",
33
"description": "Grab WordPress the fast way",
44
"keywords": ["wordpress"],
5-
"version": "v1.1.1",
5+
"version": "v1.1.2",
66
"license": "MIT",
77
"author": "matthijs110",
88
"require": {

src/InstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ protected function unpack(OutputInterface $output)
123123
$archive->close();
124124

125125
// Delete the zip file.
126-
$output->writeln('');
127126
$output->writeLn("<info>Cleaning up...</info>");
127+
$output->writeln('');
128128
@unlink($this->file);
129129

130130
return $this;

wordpress

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if (file_exists(__DIR__.'/../../autoload.php')) {
99

1010
use Symfony\Component\Console\Application;
1111

12-
$app = new Application('WordPress Downloader', '1.1.0');
12+
$app = new Application('WordPress Downloader', '1.1.2');
1313

1414
$app->add(new InstallCommand);
1515

0 commit comments

Comments
 (0)