Releases: mikeerickson/laravel-craftsman
Releases · mikeerickson/laravel-craftsman
1.10.1
[1.10.1] - 2020-07-03
Added
- Added
craft:test --pest
option to create pest formatted tests
laravel-craftsman craft:test TestPest.php --pest
laravel-craftsman craft:test TestPest.php --pest --unit
Fixed
-- Fixed craft:migration
to properly use --tablename
for CreateXXXTable
class name
-- Fixed $tablename
variable in templates/model.mustache
template to use correct $table
Before:
protected $tablename = "users";
After:
protected $table = "users";
1.8.0
- Added
craft:command
command - Added
craft:event
andcraft:listener
commands
1.6.1
- feature: add
foreign
constraint support when crafting migrations - feature: add
current
option when crafting migrations - feature: add
migration
option when crafting models - admin: updated tests
- admin: updated readme
1.3.0
1.1.2
- Fix issue when creating migrations and tablename is not supplied
- Added migration name parsing to determine migration class name when --model or --tablename not supplied
- Added more tests to cover migration adjustments