Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
DzikuVx committed Jun 25, 2015
2 parents 54a0aba + 57737e0 commit 8d2d4cc
Show file tree
Hide file tree
Showing 12 changed files with 1,297 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ userData/phpCache\\File.sca

.idea/*
.vagrant

vendor
cache
6 changes: 6 additions & 0 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -181,3 +181,9 @@ sudo service apache2 restart

# Create the database
mysql -uroot -proot < /var/www/webapp/sql/setup.sql

# Setup Redis
apt-get -y install redis-server

# setup memcached
sudo apt-get -y install memcached php5-memcache
6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
"license": "MIT",
"description": "phpCache is object PHP >=5 cache wrapper that offers similar way of handling various caching mechanisms",
"require": {
"php": ">=5.3.0"
"php": ">=5.3.0",
"predis/predis": "1.0.1"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"authors": [
{
Expand Down
Loading

0 comments on commit 8d2d4cc

Please sign in to comment.