mirror of
https://github.com/moparisthebest/wallabag
synced 2024-10-31 15:35:05 -04:00
app | ||
src | ||
web | ||
.gitignore | ||
composer.json | ||
composer.lock | ||
LICENSE | ||
README.md |
wallabag v2
This is a Proof o f Concept of wallabag v2 using the PHP framework Symfony.
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 wallabag v2 by using the embedded webserver:
php -S localhost:8080 -t web web/index.php
wallabag should now be running at http://localhost:8080.
Test
For unit tests (using Atoum) use:
./console tests:unit
For functional tests you'll need phpunit:
phpunit