https://github.com/ayman-benmada/sylius-export-plugin
The Export plugin allows you to export all data of any entity directly from the configuration file
https://github.com/ayman-benmada/sylius-export-plugin
export sylius sylius-plugin symfony
Last synced: 5 months ago
JSON representation
The Export plugin allows you to export all data of any entity directly from the configuration file
- Host: GitHub
- URL: https://github.com/ayman-benmada/sylius-export-plugin
- Owner: ayman-benmada
- License: mit
- Created: 2024-05-02T19:31:31.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-12T19:28:22.000Z (almost 2 years ago)
- Last Synced: 2025-04-06T14:38:55.997Z (12 months ago)
- Topics: export, sylius, sylius-plugin, symfony
- Language: PHP
- Homepage:
- Size: 431 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Sylius Export Plugin
The Export plugin allows you to export all data of any entity directly from the configuration file.

## Documentation
- Configuration Reference
- Command Reference
## Installation
Require plugin with composer :
```bash
composer require abenmada/sylius-export-plugin
```
Change your `config/bundles.php` file to add the line for the plugin :
```php
['all' => true],
]
```
Then create the config file in `config/packages/abenmada_export_plugin.yaml` :
```yaml
imports:
- { resource: "@ExportPlugin/Resources/config/services.yaml" }
```
Then import the routes in `config/routes/abenmada_export_plugin.yaml` :
```yaml
abenmada_export_plugin_routing:
resource: "@ExportPlugin/Resources/config/routes.yaml"
prefix: /%sylius_admin.path_name%
```