webeith / dnsbl-bundle
Dnsbl bundle for Symfony2
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
pkg:composer/webeith/dnsbl-bundle
Requires
- php: >=5.3.2
- symfony/framework-bundle: >=2.0.0
- webeith/dnsbl: *
This package is not auto-updated.
Last update: 2025-10-25 20:47:03 UTC
README
Usage Example
$this->getContainer()->get('dnsbl');
Installation
Install via Composer
Add the following lines to your composer.json file and then run php composer.phar install or php composer.phar update:
{
"require": {
"webeith/dnsbl-bundle": "dev-master"
}
}
Register the bundle
To start using the bundle, register it in app/AppKernel.php:
public function registerBundles() { $bundles = array( // Other bundles... new Webeith\DnsblBundle\WebeithDnsblBundle(), ); }