Sandro Keil
Sandro Keil
Since the [PHP intl extension](http://php.net/manual/en/book.intl.php) is available, there is no need to use mbstring anymore. Websites uses UTF-8 and PHP intl extension is more comfortable than mbstring. I've replaced all...
It would be great to implement a `\Countable` interface. Simply loop over rows/lines without extracting data. What do you think?
First, thank you very much for this awesome project. I don't know if it's a Docker mounting error or a gcsf error with encrypted filenames. Don't blame me for doing...
**Is your feature request related to a problem? Please describe.** I can not start the application in dev mode via Docker, because it tries to open the browser via `xdg-open`...
TemplateID: static-website/static-website Does it makes sense to switch from `Lambda@Edge` for the SEO friendly URLs (redirects) to the new [CloudFront Functions](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/edge-functions.html) for the `static-website` template? This would also remove the...
I guess there are some incorrect results. I use [this php.ini](https://github.com/prooph/docker-files/blob/master/php/config/php-cli.ini) and PHP 7.0 with iniscan version 3.6.4. This is the output: ``` Status | Severity | PHP Version |...
I get multiple PHP warnings if I run `iniscan show`. I use [this php.ini](https://github.com/prooph/docker-files/blob/master/php/config/php-cli.ini) and PHP 7.0 with iniscan version 3.6.4. ``` Current PHP.ini settings from /usr/local/etc/php/php.ini ########## :: date.timezone...
Is it planned to support [Symmetric array destructuring](http://php.net/manual/en/migration71.new-features.php#migration71.new-features.symmetric-array-destructuring)? ```php //prior to php 7.1 list($firstName, $lastName) = ["John", "Doe"]; // php >= 7.1 [$firstName, $lastName] = ["John", "Doe"]; ```
Are there any plans to create a native PHP >= 7.1 extension of this library to increase overall performance in PHP? Something like [node-arangodb-cxx](https://github.com/arangodb/node-arangodb-cxx). Have you any idea which performance...
It would be useful to detect misconfigurations (#38 ) via an CLI command. This can be included in a build pipeline too.