Dany Maillard
Dany Maillard
The main huge advantage is to have a lib with a **low level of dependency**, by removing dependencies from the Silex app. Example: currently, if I want to require ``opendatach/transport``...
You should keep this repo as main repo that hosts the library, and create for example an ``opendatach/transport-api`` that hosts API. In this way, people that used this repo as...
Partially. It solves dependencies problem when this package is used as dependancy of an other projet, but it will no longer be possible to install this app with ``--no-dev`` composer...
I made a `format_from_array` twig filter as a workaround : ```twig {{ '%s %s %s'|format_from_array(params) }} ``` ```php use Twig\Extension\AbstractExtension; use Twig\TwigFilter; class FormatFromArrayExtension extends AbstractExtension { public function getFilters():...
About the `I*.php` interface files, why not _suffix interfaces with Interface_ [like Symfony does](https://symfony.com/doc/current/contributing/code/standards.html#naming-conventions). ``` ISegmentConvertor.php -> SegmentConvertorInterface.php ```
A workaround could be to use an intermediate null_resource depending on the real resources: ```terraform resource "null_resource" "depends_on_sleep_and_test" { triggers = { always_run = timestamp() } depends_on = [time_sleep.wait_300_seconds, null_resource.test]...
@Dranac here, a workaround to generate your csv with the ordered fields (described in the private `order`property) : ```php namespace App\Serializer\Normalizer; use App\Entity\Foo; use Symfony\Component\Serializer\Normalizer\NormalizerInterface; use Symfony\Component\Serializer\Normalizer\ObjectNormalizer; class CsvFooNormalizer implements...
I faced again the same need more than 1 year after [my first comment](https://github.com/symfony/symfony/issues/27441#issuecomment-478091827) :smile: This time, I solved it by creating a normalizer decorator handling sort. So, as any...
Do you see a way to do it? The [profile token](https://github.com/symfony/symfony/blob/1272c0dc36209b7e87cc0e298fa755739fd0b75d/src/Symfony/Component/HttpKernel/Profiler/Profiler.php#L136) is known at the very last time, once command completed (so once the messages are already handled).