Using the wp i18n make-pot I can create a .pot file that can interpret .php files.
This is the command I use
wp i18n make-pot . languages/my-plugin.pot
This is good but because I use timber with my wordpress as its template engine, timber uses .twig files.
How can I use wp-cli create .pot command to look into .twig files?
I tried this command
wp i18n make-pot . languages/my-plugin.pot --include=*.twig
That creates the same .pot file that only interpreted .php and not .twig files as well.
Looking at github issues this is a open issue ease inheritance in order to support Twig/Timber.
Reading this thread I could not really come to a solution.

