teamneusta / pimcore-presentation-bundle
Allows to create online presentations in pimcore using reveal-js
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 11
Forks: 2
Open Issues: 2
Type:pimcore-bundle
Requires
- php: ^8.1
- pimcore/pimcore: ^10.0
- symfony/config: ^5.3
- symfony/console: ^5.3
- symfony/dependency-injection: ^5.3
- symfony/event-dispatcher: ^5.2
- symfony/finder: ^5.2
- symfony/http-kernel: ^5.3
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.11
- jangregor/phpstan-prophecy: ^1.0
- phpspec/prophecy-phpunit: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan: ^1.8
- phpstan/phpstan-phpunit: ^1.1
- phpstan/phpstan-symfony: ^1.2
- phpunit/phpunit: ^9.3
README
Allows to create online presentations in Pimcore using reveal-js.
Installation
-
Require the bundle
composer require teamneusta/pimcore-presentation-bundle
-
Enable the bundle
Add the Presentation Bundle to your
config/bundles.php
:Neusta\Pimcore\PresentationBundle\NeustaPimcorePresentationBundle::class => ['all' => true],
-
Install the bundle
bin/console pimcore:bundle:install NeustaPimcorePresentationBundle
-
Install reveal.js
After the Bundle is installed it is required to manually install reveal-js
cd vendor/teamneusta/pimcore-presentation-bundle/public curl -OL https://github.com/hakimel/reveal.js/archive/master.zip unzip master.zip rm master.zip
Usage
Create new Pimcore document pages using the Document Types offered by this bundle. See documentation for more details
Configuration
The bundle provides a handful of simple areabricks for creating presentations. When the bundle is used together with other bundles, there may be collisions of areabrick names or you may simply not be interested in using the default bricks. It is possible to disable the included areabricks with the following configuration
neusta_pimcore_presentation: bricks: false
Contribution
Feel free to open issues for any bug, feature request, or other ideas.
Please remember to create an issue before creating large pull requests.
Local Development
To develop on local machine, the vendor dependencies are required.
bin/composer install
We use composer scripts for our main quality tools. They can be executed via the bin/composer
file as well.
bin/composer cs:fix bin/composer phpstan bin/composer tests