Go to file
Nicolas Lœuillet 51ee652e58 [add] route for article view 2014-01-08 10:55:28 +01:00
app [add] route for article view 2014-01-08 10:55:28 +01:00
src/Poche Formatting 2013-12-13 22:42:13 +01:00
tests Use fetchAll directly on the connection and bind parameters using ? 2013-12-13 18:44:43 +01:00
vendor/full-text-rss Add full-text-rss lib 2013-12-10 16:19:15 +01:00
web Add full-text-rss lib 2013-12-10 16:19:15 +01:00
.gitignore Update gitignore 2013-12-10 16:19:32 +01:00
.travis.yml Launch phpunit on travis 2013-11-23 00:17:39 +01:00
LICENSE Add LICENSE file 2013-11-21 10:00:00 +01:00
README.md Add build status image 2013-11-23 10:45:29 +01:00
composer.json [add] preparing to poche a new link 2013-11-27 14:10:31 +01:00
console Reorganise files 2013-11-22 15:01:46 +01:00
phpunit.xml Use specific bootstrap file for functional tests 2013-11-24 11:27:49 +01:00

README.md

Poche v2 Build Status

This is a Proof of Concept of Poche v2 using the PHP micro-framework Silex.

Installation

Get Composer and install Silex:

curl -s http://getcomposer.org/installer | php
php composer.phar install

Then configure your webserver to point to the web/ directory. Some documentation is available on the Silex documentation page.

If you are using PHP 5.4 you can run Poche v2 by using the embedded webserver:

php -S localhost:8080 -t web web/index.php

Poche should now be running at http://localhost:8080.

Then you should initialize your database by running:

./console db:create

Test

For unit tests (using Atoum) use:

./console tests:unit

For functional tests you'll need phpunit:

phpunit