aboutcoders/file-distribution-bundle
Symfony bundle providing database-backed file management and distribution. Define filesystems in config or persist via Doctrine ORM, then store and transfer files across local, FTP, or CDN targets. Built on the AbcFileDistribution library and unit tested.
AppKernel, Container, and ORM assumptions). A wrapper layer (e.g., a custom Laravel package) would need to:
AppKernel registration → Laravel’s config/app.php).aboutcoders/file-distribution library (if available separately) as a foundation, bypassing Symfony-specific abstractions entirely.aboutcoders/file-distribution library available separately? If so, it could be a cleaner starting point.aboutcoders/file-distribution library directly (if decoupled from Symfony).filesystem + queue for async CDN/FTP transfers, or leverage packages like:
FilesystemManager, TransferService) to identify Laravel-compatible abstractions.// Pseudocode: Custom CDN sync service
class CdnSyncService {
use Filesystem;
public function syncToCdn(string $localPath, string $cdnPath) {
$this->copy($localPath, $this->disk('cdn')->path($cdnPath));
}
}
config/abc_file_distribution.php.services.yml with Laravel’s bindings.Events facade.Container or ORM may conflict with Laravel’s architecture.Bundle structure.How can I help you explore Laravel packages today?