Jérôme Tamarelle

Results 51 issues of Jérôme Tamarelle

Fix #2120 By moving all the logic to a trait, it make it possible to reuse entities provided by community projects. Example: https://github.com/z-song/laravel-admin/blob/master/src/Auth/Database/Administrator.php The properties `$primaryKey` and `$keyType` can't be...

Following https://github.com/symfony/monolog-bundle/pull/446 The console logger have a map of verbosity => log level that should be configurable with env vars. Disadvantage: in case of invalid log level, the exception cannot...

"examples" is a common directory name for files that demonstrate how to use a library, but not actually part of the code that is exposed to the autoloader. Example files...

The [legacy mongo extension](https://pecl.php.net/package/mongo) stopped being maintained 6 years ago. No need to mention it anymore as it cannot be installed on PHP 8.1+. The secure.php.net website redirects to www.php.net.

One drawback to writing extensions at present is that the declaration of functions/filters/tests is not directly adjacent to the methods. It's worse for runtime extensions because they need to be...

- new feature - BC break? yes - doc PR: nette/docs#??? When reading a `ClassType` from a FQCN or a file, the result can be anything from the 4 subclasses....

`stdClass` objects doesn't define their property types. Since they are hash-map like arrays, I would like to define their type like an array. Using type template ``` stdClass ``` Using...

Thanks to fibers, the `amphp/http-client v5` has a "sync" interface: it gets rid of promises & generators. It is now possible to implement the [PSR-18: HTTP Client](https://www.php-fig.org/psr/psr-18/). Benefits: - Any...

feature request

## DESCRIPTION Fix small typos. ## STAGING ## JIRA ## BUILD LOG ## Self-Review Checklist - [ ] Is this free of any warnings or errors in the RST? -...

`MockBuilder::addMethods()` is deprecated in PHPUnit 10.1 https://github.com/sebastianbergmann/phpunit/issues/5320 To run the tests with PHPCR, I have to add this to `composer.json`: ```json "doctrine/phpcr-odm": "^1.8", "jackalope/jackalope-fs": "*", ``` And run `COMPOSER_ROOT_VERSION=1.99 composer...