Nicolas Grekas

Results 717 comments of Nicolas Grekas
trafficstars

Please send a PR, that's the best way to move forward here I think.

This needs better documentation for sure. @stof is right. The way to completly ignore the default endpoints is to set the enpoint as an array in composer.json. Up for a...

Why not. That'd require a new configurator. PR welcome.

The last comment of the default services.yaml already explains this.

Thanks for the link to [arokettu/php-random-polyfill](https://github.com/arokettu/php-random-polyfill). Given this work, wouldn't it make sense to *not* merge this PR? What about merging arokettu/php-random-polyfill into symfony/polyfill? We'd go with a dedicated package...

This should be the way to go: ```yaml services: _defaults: &defaults autowire: true autoconfigure: true AppBundle\AgentProxy\: resource: '../../../src/AgentProxy/*' exclude: - '../../../src/AgentProxy/**/Exception/*' - '../../../src/AgentProxy/**/Model/*' AppBundle\AgentProxy\ClientInterface: '@AppBundle\AgentProxy\Client' when@dev: services: _defaults: *defaults AppBundle\AgentProxy\ClientCollector:...