start new:
tmux
start new with session name:
tmux new -s myname
| <?php | |
| // bootstrap/kirby.php | |
| include dirname(__DIR__) . '/vendor/autoload.php'; | |
| $kirby = new Kirby([ | |
| 'roots' => [ | |
| 'base' => $base = dirname(__DIR__), | |
| 'index' => $base . '/public', | |
| 'content' => $base . '/content', |
| <?php | |
| class ProcessWireValetDriver extends BasicValetDriver | |
| { | |
| private $possibleDirectories = [ | |
| '', // PW in root, do not remove except you're sure you never use it | |
| '/dist', | |
| '/public' | |
| ]; |
| // MultiExporter.jsx | |
| // Version 0.1 | |
| // Version 0.2 Adds PNG and EPS exports | |
| // Version 0.3 Adds support for exporting at different resolutions | |
| // Version 0.4 Adds support for SVG, changed EPS behaviour to minimise output filesize | |
| // Version 0.5 Fixed cropping issues | |
| // Version 0.6 Added inner padding mode to prevent circular bounds clipping | |
| // | |
| // Copyright 2013 Tom Byrne | |
| // |