akyos/ux-export
Composer 安装命令:
composer require akyos/ux-export
包简介
A Symfony bundle for export in live Component
README 文档
README
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
composer require akyos/ux-export
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
composer require akyos/ux-export
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php file of your project:
// config/bundles.php return [ // ... Akyos\UXExportBundle\UXExportBundle::class => ['all' => true], ];
Configuration
The bundle writes generated files under ux_export.path. The default path is
%kernel.project_dir%/var/export/. It can be overridden in
config/packages/ux_export.yaml:
ux_export: path: '%kernel.project_dir%/var/export/'
Defining Exportable Entities
Mark your entities with #[Exportable] and use #[ExportableProperty] to
control what is exported. Properties or methods tagged with these attributes
are listed in the export when their groups option matches the group passed to
the exporter. You may also rely on Symfony's #[Groups] attribute as a
fallback.
Usage of Exportable Attributes
ExportableProperty exposes several options:
groups: serializer groups allowed for this column.name: override the column header.position: integer used to order columns.fields: extract sub-fields from a related entity.fields: extract sub-fields from a related entity. When omitted, fields having the same group on the related entity are exported automatically.manyToMany: set tolinesto duplicate rows for each relation or tosheetto create an additional worksheet listing the intermediate table.
Example:
#[ExportableProperty(groups: ['export'], fields: ['name', 'email'], manyToMany: ExportableProperty::MODE_SHEET)] private Collection $users;
Exporting Nested Fields
The fields option allows you to export specific properties from a related entity. If omitted, the exporter will automatically include every property of the child entity that belongs to the selected group:
#[Exportable] class Order { #[ExportableProperty(groups: ['export'], fields: ['firstName', 'lastName'])] private ?Customer $customer = null; }
Many-to-many Relations
Use the manyToMany option when dealing with collections:
// duplicate one row per related entity #[ExportableProperty(groups: ['export'], manyToMany: ExportableProperty::MODE_LINES)] private Collection $tags; // or create a dedicated worksheet listing the relations #[ExportableProperty(groups: ['export'], manyToMany: ExportableProperty::MODE_SHEET)] private Collection $roles;
Export Values from Methods
Methods can also be exported:
#[Exportable] class User { #[ExportableProperty(groups: ['export'], name: 'Full name', position: 1)] public function getFullName(): string { return $this->firstName.' '.$this->lastName; } }
Live Component Integration
Include ComponentWithExportTrait in a Symfony UX Live Component. Implement
getData() to provide the dataset (an array, a Doctrine QueryBuilder or a
Query). Set the $class property so the trait can read your entity metadata:
use Akyos\UXExportBundle\Trait\ComponentWithExportTrait; use Symfony\UX\LiveComponent\Attribute\AsLiveComponent; #[AsLiveComponent] class UserTableComponent { use ComponentWithExportTrait; public string $class = User::class; public ?string $exportGroup = 'default'; private UserRepository $repository; public function __construct(UserRepository $repository) { $this->repository = $repository; } public function getData(): iterable { return $this->repository->createQueryBuilder('u')->getQuery(); } }
Calling the export action generates the file and redirects the browser to the
download route provided by the bundle.
Export Formats
The trait supports two formats controlled by the $exportType property:
xlsx(default)csv
When exporting to CSV, a file is created for each worksheet. If some
ExportableProperty fields use the manyToMany option set to sheet, an
additional CSV is generated for that relation and all files are zipped together.
Using CSV Export
Set the trait's $exportType property to csv and optionally customize
$exportFileName when you prefer CSV instead of XLSX:
#[AsLiveComponent] class UserTableComponent { use ComponentWithExportTrait; public string $class = User::class; public string $exportType = 'csv'; public string $exportFileName = 'users'; public ?string $exportGroup = 'default'; private UserRepository $repository; public function __construct(UserRepository $repository) { $this->repository = $repository; } public function getData(): iterable { return $this->repository->createQueryBuilder('u')->getQuery(); } }
The bundle will generate a single CSV by default. If one of your
ExportableProperty definitions uses manyToMany: ExportableProperty::MODE_SHEET,
multiple CSV files will be produced and automatically zipped.
akyos/ux-export 适用场景与选型建议
akyos/ux-export 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 66 次下载、GitHub Stars 达 1, 最近一次更新时间为 2025 年 01 月 31 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「php」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 akyos/ux-export 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 akyos/ux-export 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 akyos/ux-export 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The bundle for easy using json-rpc api on your project
Bundle Symfony DaplosBundle
Alfabank REST API integration
Biblioteca PHP pura para pagamentos SISP/Vinti4 de Cabo Verde.
Zero-dependency raw PHP DNS resolver, domain-ownership verification, and intoDNS/MxToolbox-style diagnostics. Queries authoritative nameservers directly over sockets — never trusts the recursive cache for ownership checks.
A lightweight plain-PHP framework for database-backed CRUD APIs.
统计信息
- 总下载量: 66
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 29
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2025-01-31