Hi
For a new project I need to use the SLIM4 framework instead of my trusted laravel. I have added Eloquent and will do migrations through phinx (from cakephp).
I want to use skipper for databases design, ORM class generation and migration. I almost got it working but two thing are still giving me trouble:
the generated filename for migrations are of a form that phinx does not understand, and I can't find a way to make it more succeptible. skipper generates yyyymmddtttttt{name}.php but phynx does not recognise this file, it needs yyyymmddtttttt_{name}.php. Is there any way to set the output filename format for migration files?
the migration class (use
top of migration file) is fixed at Illuminate\Database\Migrations\Migration
. In my case that needs to be \Migration\Migration which is the class that extends the phinx abstract mygration class. Is there any way to setup the template(?) skipper uses?
all the best!
Michael