Fede Isas
Fede Isas
Some MLSes, when they have an error, they respond with invalid XML: ```xml ``` We should have a way to gracefully respond instead of just throwing the XML exception. And,...
I had a server die because of this. I'm willing to pick up this PR and make the changes needed to get it into master. @troydavisson
@troydavisson I think the current code is using a different cookie for each request.
@DeskAgent I extended the `Session` class to override the `getDefaultOptions` method and change the options to: ``` $options['curl'][CURLOPT_COOKIEFILE] = ''; ``` I think this keep cookies in memory.
We're using [Pimple](https://github.com/silexphp/Pimple) in our li3 app and I've found really hard to inject controllers. It would be great if li3 had bindings to implement whatever IoC container you want.
Also, the documentation for the current implementation is sparse: http://li3.me/docs/manual/architecture/dependencies.md
Hi @davidpersson! I'd gladly write it, but I have to say I don't understand how this injection is supposed to work. The `$_classes` and `$_autoConfig` variables of `lithium\core\Object` are really...
@joostsolvari I started working on this here: https://github.com/Edujugon/laradoo/pull/40 Moved the CI to Github Actions (travis-ci.org is shutting down). Couldn't get the tests to pass though.
I think running `php artisan basset:build --production` doesn't really sets the App environment to production. Is just an internal flag for Basset. Luckily, @jasonlewis provided a bunch of useful filters....