Sebastiaan Stok

Results 43 comments of Sebastiaan Stok

Ah, so the problem is that Symfony loads page with the CSS, but then a sub-request is started for the Exception which doesn't have the CSS as this was part...

From what I know you need enough events to able rebuild the AR's state in memory. So copying the entire AR is not uncommon. Collections however are a bit more...

Concerning the Collection problem, you could return a wrapped/decorated Collection that only allows getting but not modifying. Internally you still have the actual mutable Collection 👍 Whenever a getter method...

When it comes to the presentation or delivery mechanism, what I have seen so far is one bundle for infrastructure, and then a separate bundle for each delivery mechanism (WebBundle,...

You shouldn't use anything else but the provided `KeyFactory` to generate a key file, this ensures the key-file Hex encoded. Using anything else doesn't guarantee that Halite is able to...

Some minor things have changed in Halite 4.1, https://github.com/paragonie/halite/blob/master/CHANGELOG.md#version-410-2018-01-05 it might be related to your problem.

https://github.com/egulias/EmailValidator (as harikt suggested) is also used by Swiftmailer and the Symfony Validator component (when strict email validation is enabled).

The `{}` is considered empty, and will use the default configuration. It's not possible to disable this configuration (which would be `false`). Disabling this for CSP would actually defeat the...

The routes are not defined in your application, add this to `config/routes.yaml` ```yaml nelmio_security: path: /nelmio/csp/report defaults: { _controller: nelmio_security.csp_reporter_controller:indexAction } methods: [POST] ``` I guess the Symfony Flex Recipe...

👍 for updating the Symfony Flex recipe. https://github.com/symfony/recipes/tree/master/nelmio/security-bundle