This repository was archived by the owner on May 14, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,8 @@ $ php wordpress install [options]
11
11
12
12
### Requirements
13
13
* PHP 7
14
+ * PHP [ ZipArchive] ( http://php.net/manual/en/class.ziparchive.php )
14
15
* [ Composer] ( https://getcomposer.org/ )
15
- * [ cURL] ( https://curl.haxx.se/docs/manpage.html )
16
- * macOS or Ubuntu
17
16
18
17
### Installation
19
18
Install this package globally
Original file line number Diff line number Diff line change 2
2
"name" : " matthijs110/wordpress-downloader" ,
3
3
"description" : " Grab WordPress the fast way" ,
4
4
"keywords" : [" wordpress" ],
5
- "version" : " v1.1.1 " ,
5
+ "version" : " v1.1.2 " ,
6
6
"license" : " MIT" ,
7
7
"author" : " matthijs110" ,
8
8
"require" : {
Original file line number Diff line number Diff line change @@ -123,8 +123,8 @@ protected function unpack(OutputInterface $output)
123
123
$ archive ->close ();
124
124
125
125
// Delete the zip file.
126
- $ output ->writeln ('' );
127
126
$ output ->writeLn ("<info>Cleaning up...</info> " );
127
+ $ output ->writeln ('' );
128
128
@unlink ($ this ->file );
129
129
130
130
return $ this ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if (file_exists(__DIR__.'/../../autoload.php')) {
9
9
10
10
use Symfony \Component \Console \Application ;
11
11
12
- $ app = new Application ('WordPress Downloader ' , '1.1.0 ' );
12
+ $ app = new Application ('WordPress Downloader ' , '1.1.2 ' );
13
13
14
14
$ app ->add (new InstallCommand );
15
15
You can’t perform that action at this time.
0 commit comments