intaro / hstore-bundle
The HStoreBundle contains DBAL type hstore and registers Doctrine type hstore
Installs: 7 209
Dependents: 1
Suggesters: 0
Security: 0
Stars: 5
Watchers: 5
Forks: 7
Open Issues: 2
Type:symfony-bundle
pkg:composer/intaro/hstore-bundle
Requires
- php: >=5.4.4
- symfony/framework-bundle: ~2.3
This package is auto-updated.
Last update: 2025-10-15 02:32:57 UTC
README
PostgreSQL module hstore allows to store sets of key/value pairs within a single PostgreSQL value. More about it here.
The HStoreBundle contains DBAL type hstore and registers Doctrine type hstore.
Installation
HStoreBundle requires Symfony 2.3 or higher.
Require the bundle in your composer.json file:
{
"require": {
"intaro/hstore-bundle": "~0.0.2",
}
}
```
Register the bundle in `AppKernel`:
```php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
//...
new Intaro\HStoreBundle\IntaroHStoreBundle(),
);
//...
}
```
Install the bundle:
```
$ composer update intaro/hstore-bundle
```
### Installing the PHP extension
The package contains two versions of the `HStoreParser` as PHP extension. PHP extension is optional but as it brings some nice performance improvements, you might want to install it in your production environment.
#### PHP extension (PHP-CPP)
The first extension is written in [PHP-CPP](http://www.php-cpp.com) thats why you should [install PHP-CPP](http://www.php-cpp.com/documentation/install) before extension compiling.
The extension compiling:
```bash
cd path/to/Intaro/HStoreBundle/Resources/phpcpp
make
sudo make install
```
Finally, enable the extension in your `php.ini` configuration file:
```ini
extension = hstorecpp.so # For Unix systems
```
#### PHP extension (Zephir)
The second extension is written in [Zephir](http://zephir-lang.com) thats why you should [install Zephir](http://zephir-lang.com/install.html) before extension compiling.
```bash
cd path/to/Intaro/HStoreBundle/Resources/zephir
zephir install
```
Finally, enable the extension in your `php.ini` configuration file:
```ini
extension = hstore.so # For Unix systems
```