PHP Package: sonata-project/exporter

A powerful PHP library for data export functionality in web applications, supporting various formats and customizations.

Current Version: 3.3.1
Last Updated: 2025-02-05
PHP Requirement: >=7.1
Dependencies: phpspreadsheet/phpspreadsheet, symfony/finder, doctrine/dbal
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Sonata Project's Exporter library provides a comprehensive solution for exporting data in web applications. It offers seamless integration, flexible configuration options, and support for multiple output formats, making it a go-to choice for data export needs.

🔗 View on GitHub

Download Latest Version: 3.3.1

Download Download v3.3.1

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/sonata-project/exporter/3.3.1/autoload.php';

use Sonata\ExporterBundle\Exporter\Exporter;
use Sonata\ExporterBundle\Source\SourceIteratorInterface;
use PhpOffice\PhpSpreadsheet\Spreadsheet;
use Symfony\Component\Finder\Finder;
use Doctrine\DBAL\Connection;


$obj = new Sonata\ExporterBundle\Exporter\Exporter();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.