An open API service indexing awesome lists of open source software.

https://github.com/intaro/hstore-bundle

[Deprecated] The HStoreBundle contains DBAL type `hstore` and registers Doctrine type `hstore`
https://github.com/intaro/hstore-bundle

Last synced: 11 months ago
JSON representation

[Deprecated] The HStoreBundle contains DBAL type `hstore` and registers Doctrine type `hstore`

Awesome Lists containing this project

README

          

# HStoreBundle

PostgreSQL module `hstore` allows to store sets of key/value pairs within a single PostgreSQL value. More about it [here](http://www.postgresql.org/docs/current/static/hstore.html).

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:

````json
{
"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
```