sipsynergy / activity-stream-bundle
Activity Stream Bundle
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^5.6|^7.0
- doctrine/doctrine-bundle: ~1.0
- doctrine/orm: ~2.2
- gedmo/doctrine-extensions: 2.3.*@dev
- knplabs/knp-time-bundle: ^1.6
- symfony/framework-bundle: ~2.2|~3.0
README
About
@WIP
Activity Stream Bundle is a PHP 5.6+ Symfony bundle providing a stream activity log management.
Installation
With composer
This bundle can be installed using composer by adding the following in the require
section of your composer.json
file:
"require": { ... "sipsynergy/activity-stream-bundle": "1.0.0" },
Register the bundle
You must register the bundle in your kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Sipsynergy\ActivityStreamBundle\SipsynergyActivityStreamBundle(), ); // ... }
Run migrations.
Either using doctrine:migrations:migrate
or doctrine:schema:update
Configuration
Configuring
If you wish to use your own default renderer, define it and point bundle to it.
# app/config/config.yml sipsynergy_activity_stream: renderer: default_class: YourRendererClass
Defining renderer services
In order to create new render service just provide definition for it with appropriate tag.
<service id="activity_stream.renderer_custom" class="%activity_stream.renderer_custom.class%"> <argument type="service" id="router"/> <tag name="activity_stream.renderer"/> </service>