https://github.com/gal-digital-gmbh/pimcore-qrcode-bundle
Adds a backend configuration view for QR-Codes.
https://github.com/gal-digital-gmbh/pimcore-qrcode-bundle
hacktoberfest php pimcore pimcore-bundle symfony symfony-bundle
Last synced: about 1 year ago
JSON representation
Adds a backend configuration view for QR-Codes.
- Host: GitHub
- URL: https://github.com/gal-digital-gmbh/pimcore-qrcode-bundle
- Owner: gal-digital-gmbh
- License: gpl-3.0
- Created: 2021-04-28T10:14:49.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-08-21T10:16:30.000Z (almost 3 years ago)
- Last Synced: 2025-03-19T01:08:45.132Z (about 1 year ago)
- Topics: hacktoberfest, php, pimcore, pimcore-bundle, symfony, symfony-bundle
- Language: PHP
- Homepage: https://www.gal-digital.de
- Size: 56.6 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Pimcore QR-Code bundle
Adds a backend configuration view for QR-Codes.
## Requirements
Pimcore >= 11.0
## Installation
Require the bundle
```bash
composer require gal-digital-gmbh/pimcore-qrcode-bundle
```
Add the bundle to the `config/bundles.php` file to enable it. The following lines should be added:
```php
use GalDigitalGmbh\PimcoreQrcodeBundle\PimcoreQrcodeBundle;
// ...
return [
// ...
PimcoreQrcodeBundle::class => ['all' => true],
// ...
];
```