Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Laravel 11 support #55

Open
pawel-omniaz opened this issue Mar 15, 2024 · 5 comments
Open

Laravel 11 support #55

pawel-omniaz opened this issue Mar 15, 2024 · 5 comments

Comments

@pawel-omniaz
Copy link

Hi, could you please add support for newest version of Laravel (11)?

@maxxscho
Copy link

maxxscho commented Jul 1, 2024

@zanysoft any updates on Laravel 11 Support?

@renky
Copy link

renky commented Sep 15, 2024

seems to be dead?!

@anselmelly
Copy link

any update?

@Ainur777
Copy link

Ainur777 commented Nov 17, 2024

Laravel 11 already has a built-in zip archiver ZipArchive;

use ZipArchive;

//Example

use ZipArchive;
..........................
$zip = new ZipArchive;
$zip->open('new_archive.zip', \ZipArchive::CREATE | \ZipArchive::OVERWRITE);
$zip->addFile('file path', 'file name'); //to archive
 if($zip->open('full path to file'){
   $zip->extractTo('path folder'); //extract archive
   $zip->close();
}

@nicholaszuccarelli
Copy link

Laravel 11 already has a built-in zip archiver ZipArchive;

use ZipArchive;

//Example

use ZipArchive;
..........................
$zip = new ZipArchive;
$zip->open('new_archive.zip', \ZipArchive::CREATE | \ZipArchive::OVERWRITE);
$zip->addFile('file path', 'file name'); //to archive
 if($zip->open('full path to file'){
   $zip->extractTo('path folder'); //extract archive
   $zip->close();
}

Just migrated over to this solution. I'd recommend this too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants