Tac Tacelosky

Results 545 comments of Tac Tacelosky

Again, maybe I'm not using the library right, could you add a snippet the the documentation? ```php $openapi = Reader::readFromJsonFile($fn = $bag->get('kernel.project_dir') . '/openapi.json'); foreach ($openapi->components->schemas as $schema) { dd($schema);...

Or maybe I'm approaching this wrong. Is it possible to migrate from FOSUserBundle to this bundle with a legacy database?

This appears to be fixed: https://github.com/yectep/phpspreadsheet-bundle/commit/55fa11b06e01ef8438c4cd624e8447098cfe134f

Documentation for auto-wiring by name is here: https://symfony.com/doc/current/service_container/autowiring.html#dealing-with-multiple-implementations-of-the-same-type I might be able to implement this, though I'm sure someone else can much faster. In particular, since this is a bundle...

Looking into it a little more, it seem that we'd need to inject the Collection into the configuration and loop through each dictionary and bind it.

@PedroTroller Any chance you could look at this? Or point me toward an example of something similar?

On a related note, what about switching to the Symfony HttpClient? Or simply requiring that the application implement a psr-7 interface, and not providing a specific implementation of one?

What do you think about dropping support for all EOL components for version 3? That'd make it much easier to upgrade. That is, PHP 7.4+, Symfony 5.4|6.0, etc. Personally, I'd...

Sigh. The problem is the documentation. https://codeception.com/quickstart 3. Create Test Generate your first acceptance test. Acceptance tests emulate behavior of a real user visiting your site. php vendor/bin/codecept generate:cest Acceptance...

Hmm. So when I install codeception on a fresh project, the recipe is installed and these instructions are given: ```bash composer require "codeception/codeception" --dev Codeception is installed for acceptance, functional,...