Alannah Kearney

Results 4 issues of Alannah Kearney

When exporting a `.env` file, values are never wrapped in quotes. When a value contains certain characters, like `=`, `$`, or `\n` (new line), this causes the resultant contents to...

help wanted

…ck (closes #187) Relates to https://github.com/jordanbrauer/unit-converter/issues/187 There is existing code to check that `ext-intl` and `ext-bcmath` are installed. Including them in the require block of `composer.json` is too restrictive and...

Currently, there is a requirement for `ext-bcmath` to be installed: https://github.com/jordanbrauer/unit-converter/blob/a8732503f8e0c6038c805e1449dc498162bfc9a2/composer.json#L12-L16 However, it is possible to use `SimpleCalculator` instead of `BinaryCalculator`: https://github.com/jordanbrauer/unit-converter/blob/a8732503f8e0c6038c805e1449dc498162bfc9a2/src/Unit/AbstractUnit.php#L128-L135 To give flexibility, and support systems that do...

Since Symphony uses a composer classmap autoloader for all classes in `/lib` (see, [composer.json#L23](https://github.com/symphonycms/symphonycms/blob/68f44f0c36ad3345068676bfb8a61c2e6a2e51f4/composer.json#L23)), this commit removes the redundant `require_once` statement. Doing so avoids code breaking if `JSONPage` is ever...