Hari K T
Hari K T
I am closing this issue for now or you can stick on to 2.x series.
@donatj can you add a failing test case and send a pull request ?
@rotexdegba to be clear, 3.x doesnot support `?` , but instead you need to use named place holder like `:name` . Please refer the documentation https://github.com/auraphp/Aura.SqlQuery/blob/b58a7aab3c3291b31671ace4d64cc31e68f3f2a7/docs/select.md#where
Note : I would suggest looking into https://github.com/atlasphp/Atlas.Query in the future.
I will vote for moving away from zend-mvc and full support via zend-expressive. Easy to read and understand. I do agree it is a bit of work for people to...
@weierophinney can you update the post to keep the link to [RestDispatchTrait](https://github.com/ezimuel/zend-expressive-api/blob/d4b7c0648cb1ae373d9bebd15942109ea0f46e5e/src/App/Middleware/RestDispatchTrait.php) . Also link to other places when pointing to ideas / implementation will be helpful.
@weierophinney I would not vote for a `separate project` . I will vote for making Apigility v2 based on Expressive . Why not a separate project ? In the long...
@weierophinney where can we track the progress for apigility v2 ? Will there be an update regarding the choice as a separate project or based on expressive ? I am...
Hi @xtreamwayz , Thank you for looking into this. I am not looking for just one implementation. I am looking for every renderer, whether it is twig, mustache, plate or...
Actually you can do something like this in Aura.Di. ``` php $di->params['Aura\SqlSchema\MysqlSchema']['column_factory'] = $di->lazyNew('Aura\SqlSchema\ColumnFactory'); $di->params['Aura\SqlSchema\MysqlSchema']['pdo'] = $di->lazyGet('pdo'); $di->set('schema', $di->lazyNew('Aura\SqlSchema\MysqlSchema')); ``` I am not in favor for Factory for the Di...