Kevin Bond

Results 135 issues of Kevin Bond

With a faker generator factory service: ```php namespace Your\Namespace; class FakerGenerator { public static function create(): \Faker\Generator { $generator = \Faker\Factory::create(); $generator->addProvider(new TitleProvider($generator)); return $generator; } } ``` ```yaml services:...

documentation

As @weaverryan and I have been working on Twig/Live components in `symfony/ux`, we've come across a few areas where named argument support would be valuable. This issue is intended to...

A configurator to allow _patching_ existing files. ```js // manifest.json { "patch": [ { "file": "assets/app.js", "position": "end", // appends to end of file "value": "\n// activates all of Bootstrap's...

This is a rough 1st draft. Some questions: 1. Should we add more detailed installation instructions? My hope is there will eventually be offical encore docs on integrating tailwind we...

Form
Status: Needs Work

| Q | A | ------------- | --- | License | MIT | Doc issue/PR | n/a Possible alternative to https://github.com/symfony/maker-bundle/pull/1085. This is just a place to explore the idea...

| Q | A | ------------- | --- | License | MIT | Doc issue/PR | n/a This adds out of the box flash message support to `base.html.twig`. If there...

Currently, `console.log('message')` is not captured by `PantherBrowser::dumpConsoleLog()`. @weaverryan found [this resource](https://stackoverflow.com/questions/40538392/get-console-log-from-selenium-using-php-webdriver#answers), but I couldn't get it to work.

enhancement
help wanted
panther

When using `throw 'message'` in your javascript, `PantherBrowser::dumpConsoleLog()` has an entry but it doesn't include "message", just "Uncaught".

enhancement
help wanted
panther

Currently, uploading files is a bit verbose: ```php $browser->post('/endpoint', ['files' => [new UploadedFile($realpath, $name, test: true)]); ``` It would be better if you could do: ```php $browser->post('/endpoint', ['files' => [$realpath]);...

enhancement
good first issue

Per conversation with @nikophil. Use `justinrainbow/json-schema` to validate schema. I don't have any experience with json schema but is it common the include the schema files in some kind of...