https://github.com/ayman-benmada/sylius-backoffice-plugin
The Backoffice plugin allows you to change back office color and channel logo
https://github.com/ayman-benmada/sylius-backoffice-plugin
backoffice style sylius sylius-plugin symfony
Last synced: 11 months ago
JSON representation
The Backoffice plugin allows you to change back office color and channel logo
- Host: GitHub
- URL: https://github.com/ayman-benmada/sylius-backoffice-plugin
- Owner: ayman-benmada
- License: mit
- Created: 2024-05-01T12:27:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-12T19:28:20.000Z (about 2 years ago)
- Last Synced: 2025-06-06T22:03:38.764Z (about 1 year ago)
- Topics: backoffice, style, sylius, sylius-plugin, symfony
- Language: PHP
- Homepage:
- Size: 575 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Sylius Backoffice Plugin
The Backoffice plugin allows you to change back office color and channel logo

## Installation
Require plugin with composer :
```bash
composer require abenmada/sylius-backoffice-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_backoffice_plugin.yaml` :
```yaml
imports:
- { resource: "@BackofficePlugin/Resources/config/services.yaml" }
```
Update the entity `src/Entity/Channel/Channel.php` :
```php
images = new ArrayCollection();
parent::__construct();
}
}
```
Run the migration :
```bash
bin/console doctrine:migration:migrate
```