1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-15 13:45:04 -05:00
Go to file
2013-11-21 20:27:42 +01:00
src Add missing getter 2013-11-21 20:27:42 +01:00
tests Fix dummy entry test 2013-11-21 20:25:05 +01:00
web Add console script / component 2013-11-21 14:26:17 +01:00
.gitignore Update gitignore 2013-11-21 09:46:51 +01:00
composer.json Trying to test a dummy Entry class 2013-11-21 20:15:42 +01:00
console Add UnitTestsCommand skeleton 2013-11-21 14:51:07 +01:00
LICENSE Add LICENSE file 2013-11-21 10:00:00 +01:00
README.md Add tests in README 2013-11-21 20:26:22 +01:00

Poche v2

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.

Test

To run the test suite just use:

./console tests:unit