intaro / hstore-extension
The HStore Extension contains DBAL type hstore and registers Doctrine type hstore
Installs: 484 643
Dependents: 0
Suggesters: 0
Security: 0
Stars: 16
Watchers: 16
Forks: 5
Open Issues: 0
Requires
- php: >=8.0
Requires (Dev)
- cache/array-adapter: ^1.1
- doctrine/annotations: ~2.0
- doctrine/orm: ~2.0
- phpunit/phpunit: ^8.5
Suggests
- ext-hstore: *
This package is auto-updated.
Last update: 2024-10-11 11:00:50 UTC
README
PostgreSQL module hstore
allows to store sets of key/value pairs within a single PostgreSQL value. More about it here.
The HStore Extension contains DBAL type hstore
and registers Doctrine type hstore
.
Installation
To install this library, run the command below and you will get the latest version:
composer require intaro/hstore-extension
If you want to run the tests:
./vendor/bin/phpunit
You can find an example configuration for using HStore extension in Symfony2 in config/hstore.yml.
You can just include in you config.yml
:
imports: - { resource: ../../vendor/intaro/hstore-extension/config/hstore.yml }
PHP extension
To speed up encoding/decoding of strings you can install C extension shipped in ext/hstore
directory.
To compile extension you must install php-dev package.
phpize ./configure make sudo make install
Finally, enable the extension in your php.ini
configuration file:
extension = hstore.so