HearsaySuperfeedrBundle | Symfony2 bundle providing a wrapper to the Superfeedr XMPP
kandi X-RAY | HearsaySuperfeedrBundle Summary
kandi X-RAY | HearsaySuperfeedrBundle Summary
HearsaySuperfeedrBundle is a PHP library. HearsaySuperfeedrBundle has no bugs, it has no vulnerabilities, it has a Strong Copyleft License and it has low support. You can download it from GitHub.
This bundle enables integration with the [Superfeedr] [XMPP API] It provides commands for subscribing/unsubscribing to resources and receiving content updates over XMPP. It uses Nathan Fritz’s XMPPHP to handle communication with Superfeedr.
This bundle enables integration with the [Superfeedr] [XMPP API] It provides commands for subscribing/unsubscribing to resources and receiving content updates over XMPP. It uses Nathan Fritz’s XMPPHP to handle communication with Superfeedr.
Support
Quality
Security
License
Reuse
Support
HearsaySuperfeedrBundle has a low active ecosystem.
It has 1 star(s) with 1 fork(s). There are 1 watchers for this library.
It had no major release in the last 6 months.
HearsaySuperfeedrBundle has no issues reported. There are no pull requests.
It has a neutral sentiment in the developer community.
The latest version of HearsaySuperfeedrBundle is current.
Quality
HearsaySuperfeedrBundle has no bugs reported.
Security
HearsaySuperfeedrBundle has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
License
HearsaySuperfeedrBundle is licensed under the GPL-2.0 License. This license is Strong Copyleft.
Strong Copyleft licenses enforce sharing, and you can use them when creating open source projects.
Reuse
HearsaySuperfeedrBundle releases are not available. You will need to build from source code and install.
Installation instructions, examples and code snippets are available.
Top functions reviewed by kandi - BETA
kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of HearsaySuperfeedrBundle
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of HearsaySuperfeedrBundle
HearsaySuperfeedrBundle Key Features
No Key Features are available at this moment for HearsaySuperfeedrBundle.
HearsaySuperfeedrBundle Examples and Code Snippets
No Code Snippets are available at this moment for HearsaySuperfeedrBundle.
Community Discussions
No Community Discussions are available at this moment for HearsaySuperfeedrBundle.Refer to stack overflow page for discussions.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install HearsaySuperfeedrBundle
Install XMPPHP. The bundle is tested against cweiske’s fork:.
Install the bundle: $ git submodule add git://github.com/hearsayit/HearsaySuperfeedrBundle vendor/bundles/Hearsay/SuperfeedrBundle
Install XMPPHP. The bundle is tested against cweiske’s fork: $ git submodule add git://github.com/cweiske/xmpphp.git vendor/xmpphp
Add the Hearsay namespace and the XMPPHP prefix to your autoloader: // app/autoload.php $loader->registerNamespaces(array( // ... 'Hearsay' => __DIR__.'/../vendor/bundles', // ... )); $loader->registerPrefixes(array( // ... 'XMPPHP_' => __DIR__.'/../vendor/xmpphp', // ... ));
Add the bundle to your kernel: // app/AppKernel.php public function registerBundles() { return array( // ... new Hearsay\SuperfeedrBundle\HearsaySuperfeedrBundle(), // ... ); }
Configure the bundle: # app/config/config.yml hearsay_superfeedr: username: superfeedr_username password: superfeedr_password
To do anything interesting, you’ll probably want to set up a handler to process update notifications from Superfeedr. The easiest way is to listen for the ``Hearsay\SuperfeedrBundle\Events::onNotificationReceived`` event: # app/config/config.yml services: my_application.superfeedr_notification_handler: # ... tags: - { name: kernel.event_listener, event: onNotificationReceived, method: handleNotification } The listener receives an instance of ``Hearsay\SuperfeedrBundle\Event\NotificationReceivedEvent``.
Install the bundle: $ git submodule add git://github.com/hearsayit/HearsaySuperfeedrBundle vendor/bundles/Hearsay/SuperfeedrBundle
Install XMPPHP. The bundle is tested against cweiske’s fork: $ git submodule add git://github.com/cweiske/xmpphp.git vendor/xmpphp
Add the Hearsay namespace and the XMPPHP prefix to your autoloader: // app/autoload.php $loader->registerNamespaces(array( // ... 'Hearsay' => __DIR__.'/../vendor/bundles', // ... )); $loader->registerPrefixes(array( // ... 'XMPPHP_' => __DIR__.'/../vendor/xmpphp', // ... ));
Add the bundle to your kernel: // app/AppKernel.php public function registerBundles() { return array( // ... new Hearsay\SuperfeedrBundle\HearsaySuperfeedrBundle(), // ... ); }
Configure the bundle: # app/config/config.yml hearsay_superfeedr: username: superfeedr_username password: superfeedr_password
To do anything interesting, you’ll probably want to set up a handler to process update notifications from Superfeedr. The easiest way is to listen for the ``Hearsay\SuperfeedrBundle\Events::onNotificationReceived`` event: # app/config/config.yml services: my_application.superfeedr_notification_handler: # ... tags: - { name: kernel.event_listener, event: onNotificationReceived, method: handleNotification } The listener receives an instance of ``Hearsay\SuperfeedrBundle\Event\NotificationReceivedEvent``.
Support
For any new features, suggestions and bugs create an issue on GitHub.
If you have any questions check and ask questions on community page Stack Overflow .
Find more information at:
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page