skonsoft / postal-address-bundle
Addressing management for Symfony2
Package info
github.com/skonsoft/postal-address-bundle
Type:symfony-bundle
pkg:composer/skonsoft/postal-address-bundle
v1.0
2013-11-25 22:00 UTC
Requires
- php: >=5.3.2
- symfony/framework-bundle: >=2.1,<2.4
This package is not auto-updated.
Last update: 2026-03-09 21:29:01 UTC
README
Simple Addressing management bundle for Symfony2.
What is it ?
It's a small bundle gives you a basic postal adresses managing. This bundle give you three ready to use entity to manage a postal adresses.
- Address: a postal address
Step 1: Install bundle using composer
{ "require": { // ... "skonsoft/postal-address-bundle": "dev-master" } }
Step 2: Register the bundle
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Skonsoft\PostalAddressBundle\SkonsoftPostalAddressBundle(),
);
// ...
}
Step 3: Update your schema database
#Important: don't use this command in production environnement !
./app/console doctrine:schema:update --force
Step 4: Load fixtures
./app/console doctrine:schema:update --force
Step 5: Clear cache
Clear your cache and enjoy !