I have a zip file with this format:
test.zip
|- test/
|- test.txt
|- test2.txt
I'm able to extract using this:
$zipper = new Zipper();
$zipper->make('test.zip')->folder('test')->extractTo('foo'); //extracts contents of test folder inside zip to foo directory
How do I extract contents without specifying the folder name inside zip?
Thanks!