{"id":33973829,"url":"https://github.com/jremmurd/pimcore-ignite-bundle","last_synced_at":"2026-06-09T09:32:24.134Z","repository":{"id":57002179,"uuid":"153177106","full_name":"jremmurd/pimcore-ignite-bundle","owner":"jremmurd","description":"Adds web realtime functionalities to your pimcore web application.","archived":false,"fork":false,"pushed_at":"2019-10-26T09:53:50.000Z","size":195,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-14T14:04:11.260Z","etag":null,"topics":["notifications","pimcore","pimcore-bundle","realtime","websocket"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jremmurd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-10-15T20:26:56.000Z","updated_at":"2019-01-18T23:43:24.000Z","dependencies_parsed_at":"2022-08-21T12:10:41.381Z","dependency_job_id":null,"html_url":"https://github.com/jremmurd/pimcore-ignite-bundle","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/jremmurd/pimcore-ignite-bundle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jremmurd%2Fpimcore-ignite-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jremmurd%2Fpimcore-ignite-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jremmurd%2Fpimcore-ignite-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jremmurd%2Fpimcore-ignite-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jremmurd","download_url":"https://codeload.github.com/jremmurd/pimcore-ignite-bundle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jremmurd%2Fpimcore-ignite-bundle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34101065,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["notifications","pimcore","pimcore-bundle","realtime","websocket"],"created_at":"2025-12-13T01:31:47.344Z","updated_at":"2026-06-09T09:32:24.093Z","avatar_url":"https://github.com/jremmurd.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pimcore Ignite\n\nIgnite your customer's user experience by adding web realtime functionalities to your web application. [Read more about the Realtime Web](docs/realtime.md). The realtime capabilities are based on the WebSocket technology. To support websocket connections the bundle uses the hosted service [Pusher](https://pusher.com/) by default.\n\n\u003e The bundle is still considered as alpha version.\n\n## Functional Overview:\n\n- Channel system for managing arbitrary events within your application.\n    - Three types of channels\n        - _private_: authentication required\n        - _presence_: authentication required, user information is stored \u0026 automatic join/leave events\n        - _public_: everyone can join and send events\n    - Channels can be assigned one or more transport services called _Drivers_. The bundle is includes three default drivers:\n        - _Pusher_: realtime events via a websocket connection [See Pusher documentation for details](https://pusher.com/docs)\n        - _Logger_: logged events in pimcore application logger\n        - _Notification_: persisted events with assigned data for user notifications\n- Client-side code generation for connection establishment and channel subscriptions for specific drivers.\n- Show online users and notifications in the Pimcore admin interface, enableable via separate user permissions.\n\n\n## Components\n\n| Component | Description | Example |\n|:-------------|:------------- |:------------- |\n| Channel | A specific context for subscriptions. There are three different types of channels: public, private and presence. For details see [Channel Types](https://pusher.com/docs/client_api_guide/client_channels#channel_types).  | global, user, user_julian, product, product_shirt ... |\n| Event | At least contains a timestamp and a name. May transport arbitrary data. | Message, Notification, ... |\n| Driver | Drivers define the possible transports for the pub/sub events.    | Logger, Pusher, Notification |\n| Authenticator | Private and presence channels need authentication, authenticator provide an interface for it. | Firewall specific user authentication i.e. `/admin`, `/app`, ... |\n| Radio | Manages all application channels. |  |\n\n## Getting started\n- [Installation](./docs/Installation.md)\n- [Configuration](./docs/Configuration.md)\n- [Code Samples](./docs/Codesamples.md)\n\nVisit `http://your-domain.com/ignite` to see your current configuration and test your realtime capabilities. While still watching your `/ignite` route then call:\n- `http://you-domain.com/ignite/publish/public`\n- `http://you-domain.com/ignite/publish/presence`\n- `http://you-domain.com/ignite/publish/notification`\n\nYou should see the messages being added to the html automatically as you call the `/publish/...` routes.\n\n## Impression\n\nIn the upper right corner there is the notification widget, which can be enabled via a user permission. \nThe widget can be collapsed, repositioned via draggging and resized. \nBy clicking a notification item it gets marked as `read` and is removed from the list.\n\nIn the lower left corner there is the user persence icon, which shows which users are online by hovering or clicking on the user icon.\n![Screenshot](./docs/img/screen.PNG \"Online Users and Notifications\")\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjremmurd%2Fpimcore-ignite-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjremmurd%2Fpimcore-ignite-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjremmurd%2Fpimcore-ignite-bundle/lists"}