hiwelo / address-formatter-bundle
Symfony 的国际邮政地址格式化组件包
v1.0-alpha
2017-04-02 22:35 UTC
Requires
- php: ~5.5|~7.0
- symfony/symfony: ~2.8|~3.0
Requires (Dev)
- phpunit/phpunit: ~4.8
Suggests
- twig/twig: ~2.0
This package is not auto-updated.
Last update: 2024-09-15 04:05:28 UTC
README
作为 Symfony 3 组件包创建的国际邮寄地址
安装
使用 composer 安装组件包。
composer require hiwelo/AddressFormatterBundle
启用组件包
在 Symfony 3 内核中启用组件包
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( //... new Hiwelo\AddressFormatterBundle\AddressFormatterBundle(), ); }