Skip to content
This repository has been archived by the owner on Apr 30, 2020. It is now read-only.

Commit

Permalink
Updated configuration with Bitset PECL extension info
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyFreeAgent committed Feb 10, 2013
1 parent 1cfa8c8 commit b9abd25
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -11,10 +11,11 @@ before_script:
# install phpredis extension.
- sh -c "git clone https://github.com/nicolasff/phpredis/ && cd phpredis && phpize && ./configure && make && sudo make install " > /dev/null
- echo "extension=redis.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- pecl install bitset
# composer install
- wget http://getcomposer.org/composer.phar
- php composer.phar install --dev


script:
- bin/atoum -mcn 1 -d tests/units
- bin/atoum -d tests/units
2 changes: 2 additions & 0 deletions README.rst
Expand Up @@ -43,6 +43,8 @@ Bitter uses `Redis <http://redis.io>`_ with version **>=2.6**.

**Note**: Every key created in Redis will be prefixed by ``bitter:``, temp keys by ``bitter_temp:``.

Bitter uses `Bitset PECL extension <http://pecl.php.net/package/Bitset>`_ with version **=1.0.1** for the ``getIds`` method.

Basic usage
-----------
Create a Bitter with a Redis client (Predis as example):
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Expand Up @@ -15,7 +15,8 @@
"issues": "https://github.com/jeremyFreeAgent/Bitter/issues"
},
"require": {
"php": ">=5.3.3"
"php": ">=5.3.3",
"ext-bitset": "1.0.1"
},
"require-dev": {
"predis/predis": "0.8.*",
Expand Down

0 comments on commit b9abd25

Please sign in to comment.