This is a great idea. My main gripe (on a very short evaluation) with Laravel is that the default application that artisan gives you comes with a lot of files dotted around the directory structure. With something like Rails these tend to be locked away in a gem and so when using CTRL+T (or similar) you get a lot of cruft popping up.
That said I do like the things that Laravel gives you out of the box like auth and the command pattern.
Comments
This is a great idea. My main gripe (on a very short evaluation) with Laravel is that the default application that artisan gives you comes with a lot of files dotted around the directory structure. With something like Rails these tend to be locked away in a gem and so when using CTRL+T (or similar) you get a lot of cruft popping up.
That said I do like the things that Laravel gives you out of the box like auth and the command pattern.
`php artisan fresh` removes a lot of the default files. They're intended as a starting point for new users but are entirely removable.
This command has been removed since like half year ago. https://github.com/laravel/framework/commit/37ebc7ecc693405a...
No it hasn't https://github.com/laravel/framework/blob/5.1/src/Illuminate...
Heh, apparently it's going away. Again.
https://github.com/laravel/framework/pull/9161
Looks like the Fresh command wasn't registered in the ArtisanServiceProvider. I have a PR open to fix this. https://github.com/laravel/framework/pull/9161
Nope, looks like the command should have been removed anyway... https://github.com/laravel/framework/pull/9161#issuecomment-...