Ron Kirschler
Ron Kirschler
Added some advice for links to other packages (dependencies) **Keep a small dependency footprint** - Don't rely on other packages unless they are mandatory. May be you could better [suggest](https://getcomposer.org/doc/04-schema.md#suggest)...
The SDK ships it's own version of `Psr\Log\LoggerInterface` which causes some IDEs (like PHPStorm) to remark an ambiguity when composer is used to install the real `Psr\Log\LoggerInterface` which is available...
Twig already offers a [`first`](https://twig.symfony.com/doc/3.x/filters/first.html) filter that is used to retrieve the first value of a list (array, iterable). This feature request proposes an enhancement to the `first` filter by...
Having checkLoaded in call itself recursivly causes an stack-exceeded-error: RangeError: Maximum call stack size exceeded at checkLoaded ([...]/bower/ng-ckeditor/ng-ckeditor.js?22:20:25) at checkLoaded ([...]/bower/ng-ckeditor/ng-ckeditor.js?22:25:2) at checkLoaded ([...]/bower/ng-ckeditor/ng-ckeditor.js?22:25:2) ...
Include a link to an Gitter chat where we can loosely discuss new features.
Allow ordinary code in template-strings (like in ES6+; incl. nested templates): ``` `Todays numbers are ${list.map(x => x * 2).join(', ')}` ``` Nested strings (nested Backticks): ``` `Todays numbers are...
When I try to invoke `composer install` on the newly cloned project, I get the following error-message: ``` [Composer\Json\JsonValidationException] "./composer.json" does not match the expected JSON schema: - authors[0].email :...
`@template` was added to indicate that the same type is returned that was passed as an object to the dispatch method. This change is useful because static code analysers would...
If an offer has no discount, then `Mirakl\MMP\Common\Domain\Offer\AbstractOffer::getDiscount` will return `NULL`. This is not documented in the type-hint, which subsequently causes problems with PHPStan and co.
This api client currently has a dependency on the Guzzle HTTP client, specified to be version ^7. This strict version requirement is causing incompatibility issues when attempting to use this...