All Projects → intaro → hstore-extension

intaro / hstore-extension

Licence: MIT License
The encoder/decoder and set of the doctrine functions for the postgresql type `hstore`

Programming Languages

PHP
23972 projects - #3 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to hstore-extension

laravel-mix-tailwindcss
Tailwind CSS wrapper for Laravel Mix.
Stars: ✭ 43 (+207.14%)
Mutual labels:  extension
Pinboard-Plus
Pinboard.in Chrome extension, not official.
Stars: ✭ 133 (+850%)
Mutual labels:  extension
talkie
Text-to-speech browser extension button. Select text on any web page, and have the computer read it out loud for you by simply clicking the Talkie button.
Stars: ✭ 43 (+207.14%)
Mutual labels:  extension
privacy-essentials-safari
Privacy Essentials Extension for Safari
Stars: ✭ 55 (+292.86%)
Mutual labels:  extension
read-medium-extension
Chrome extension for reading Medium for free without leaving the page.
Stars: ✭ 55 (+292.86%)
Mutual labels:  extension
youtube-audio
Disable videos on youtube and save battery and bandwidth / data
Stars: ✭ 110 (+685.71%)
Mutual labels:  extension
mkdocs-click
An MkDocs extension to generate documentation for Click command line applications
Stars: ✭ 34 (+142.86%)
Mutual labels:  extension
millennials-to-snake-people
🐍 Chrome extension that replaces occurrences of 'Millennials' with 'Snake People'
Stars: ✭ 187 (+1235.71%)
Mutual labels:  extension
apps
daily.dev application suite
Stars: ✭ 253 (+1707.14%)
Mutual labels:  extension
Bridge
🌉 New tab. For devs. F*ck you.
Stars: ✭ 25 (+78.57%)
Mutual labels:  extension
godot-twicil
Godot TwiCIL – Godot Twitch Chat Interaction Layer
Stars: ✭ 57 (+307.14%)
Mutual labels:  extension
notion-enhancer.github.io
the notion-enhancer project's website
Stars: ✭ 24 (+71.43%)
Mutual labels:  extension
vscode-open-in-github
Visual Studio Code Extension — Open file in GitHub
Stars: ✭ 35 (+150%)
Mutual labels:  extension
sketchup-shapes
Shapes adds new tools for drawing more shapes and primitives in SketchUp.
Stars: ✭ 19 (+35.71%)
Mutual labels:  extension
omegleip
Shows the IP and Geolocation of the stranger. Written in Javascript as a Extension
Stars: ✭ 33 (+135.71%)
Mutual labels:  extension
ACBRadialCollectionView
An extension on UICollectionView which automatically transforms collection view cells to a radial path
Stars: ✭ 31 (+121.43%)
Mutual labels:  extension
gitlab-job-log-viewer
Browser extension for code highlighting raw logs in Gitlab CI
Stars: ✭ 21 (+50%)
Mutual labels:  extension
nekocap
Browser extension for creating & uploading community captions for YouTube, niconico and other video sharing sites.
Stars: ✭ 27 (+92.86%)
Mutual labels:  extension
blur-my-shell
Extension that adds a blur look to different parts of the GNOME Shell, including the top panel, dash and overview
Stars: ✭ 516 (+3585.71%)
Mutual labels:  extension
b2ntp
Kanban style New Tab Page extension with your bookmarks and powerful search
Stars: ✭ 50 (+257.14%)
Mutual labels:  extension

HStore Extension

Build Status

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 directory. Use appropriate folder for you php version hstore5x for 5.x and hstore7x for 7.x.

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].