Skip to content

rev42/revpdf

Repository files navigation

RevPDF (Graphical PDF generation tool for PHP)

This software has been developed from Silex-Kitchen-Edition (MIT Licence) and then customized to be RevPDF.

Installation

For LINUX/MAC users:

unzip the archive
cd PATH/TO/YOUR/APP
curl -s http://getcomposer.org/installer | php
php composer.phar install
  • Rename resources/config/config.sample.php into resources/config/config.php

  • Adapt database settings in resources/config/config.php file

    chmod +x bin/console ./bin/console revpdf:application:install --create_tables=[yes|no] --import_samples=[no|yes]

For WINDOWS users:

unzip the archive
cd PATH/TO/YOUR/APP
PATH_TO_PHP.EXE\php.exe -r "eval('?>'.file_get_contents('http://getcomposer.org/installer'));"
PATH_TO_PHP.EXE\php.exe composer.phar install
  • Rename resources/config/config.sample.php into resources/config/config.php

  • Adapt database settings in resources/config/config.php file

    PATH_TO_PHP.EXE\php.exe bin/console revpdf:application:install --import_samples=[no|yes]

Help

Components

RevPDF is powered by powerful and robust components (thanks to their authors):

Licence

Please see LICENCE file

Original Licence from Silex-Kitchen-Edition

Copyright (C) 2012 Grégoire Pineau

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUTOF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.