I am improved the config class with neon, now it can be write like this:
services:
- App\Play\Provider
- App\Play\Sender
- App\Play\Logger(dev.log)
prod < services:
- App\Play\Logger(prod.log)
test < services:
- App\Play\Logger(test.log)
it can merge config in every env, I'd like it :-P
but when I try to use addConfig() method to set di config to compiler, it was error, because Nette\Neon\Entity is not Nette\DI\Statement
could you make they to be same class? or compatible neon entity in Validator?