jake

Results 10 issues of jake

I don't seem to be able to get bookmarks to work correctly. I see #26 references encoding issues with bookmarks, but I'm not positive this is related. ``` php $facade...

Why are there default configurations for things like fonts that are not included? For example [fonts](https://github.com/psliwa/PHPPdf/blob/master/lib/PHPPdf/Resources/config/fonts.xml#L52-L79) like Helvetica. I believe the assumption that these are present is wrong, and it...

This is just #47 for 3.x. It looks like there was already a `getAll` equivalent: `getSegment`.

How about adding a `compser.json` and registering with https://packagist.org/ , so I can use and update the icons in PHP projects using the PHP package manager?

Is anyone planning on adding Header name constants? eg, there's some header constants here: https://github.com/lmc-eu/http-constants/blob/master/src/Header.php

I had some recollection of this being discussed, but I don't see it in the issue tracker, so I figure I'd raise it here. I assume there has been some...

The default `Input` class does this: ```php return [ array_replace( (array) $request->getQueryParams(), (array) $request->getParsedBody(), (array) $request->getUploadedFiles(), // my issue is here (array) $request->getCookieParams(), (array) $request->getAttributes() ) ]; ``` I think...

help wanted

This makes it so I can get the text of the title property without the HTML for use elsewhere in a layout. For example: ``` php

I think this should allow us to create a schema object without needing to know the driver type by getting the information from the `pdo` via `PDO::getAttribute(PDO::ATTR_DRIVER_NAME)`, or by passing...

Adds ability to register aliases for commands. I like to use longer, descriptive proper names with convenient shortcuts. ``` $ ./bin/user --help Usage: ./bin/user [options] [operands] Options: --version Show version...