Pakupakis | Fileupload
$upload->enableAuditLog('/logs/uploads.log'); $upload->setEncryption('AES-256-GCM', $secretKey); In independent tests with 1,000 concurrent uploads (each 5MB):
For projects where file uploads are more than an afterthought, Pakupakis delivers reliability, security, and developer happiness. Give it a try on your next project – your users (and your sysadmins) will thank you. 📦 Install via Composer: composer require pakupakis/fileupload 📖 Full documentation: https://docs.pakupakis.io/fileupload 🐛 Report issues: https://github.com/pakupakis/fileupload/issues pakupakis fileupload
Whether you're building a simple contact form, a document management system, or a social media platform, Pakupakis FileUpload offers the flexibility and security you need without the bloat of traditional frameworks. Pakupakis FileUpload is an open-source file handling library that simplifies the process of receiving, validating, and storing files uploaded via HTTP. Built with PHP first, it has since expanded to support Node.js, Python, and Go environments. The name "Pakupakis" – derived from the Filipino word for "packet" or "parcel" – reflects its core mission: to treat each file as a secure, well-packaged unit of data. $upload->enableAuditLog('/logs/uploads
1. User Profile Pictures with Automatic Resizing $upload = new Pakupakis\FileUpload($_FILES['profile_pic']); $upload->onAfterSave(function($file) $image = new \Imagick($file->getPath()); $image->resizeImage(200, 200, \Imagick::FILTER_LANCZOS, 1); $image->writeImage($file->getPath()); ); 2. Streaming to Cloud Storage Without Local Temp Files # Python example from pakupakis import CloudUpload upload = CloudUpload(request.files['video'], provider='s3') upload.stream_to_bucket( bucket_name='user-content', object_key=f"videos/uuid4().mp4", chunk_size=8192 ) 3. Secure Document Submission for Compliance (HIPAA / GDPR) Pakupakis includes audit logging and automatic encryption at rest: Pakupakis FileUpload is an open-source file handling library
Have a success story or custom integration? Share it with the community by tagging #PakupakisUpload.
// PHP Example $upload = new Pakupakis\FileUpload($_FILES['documents']); foreach($upload->getFiles() as $file) $file->validate(['size' => '5MB', 'type' => ['pdf', 'docx']]); $file->save('/storage/documents/');
// Set rules $upload->setMaxSize('2MB'); $upload->allowedTypes(['image/jpeg', 'image/png']); $upload->setUploadDir('/var/www/uploads/avatars/');