Geoffrey Hoffman

Results 15 comments of Geoffrey Hoffman

The only other thing I do is I remove `created_at`, `updated_at` and `deleted_at` from every `$fillable = [ ... ]` array the generator creates. I believe it is desirable to...

@cacpmw I said “model” I meant migration. My comment was pertaining to the fact that when you create a migration with Laravel’s built-in command and put timestamps and soft deletes...

Getting Docker working well under Windows 10 is a challenge. If you are using Docker under WSL2 then your files should be inside of the WSL environment; e.g. `/home//projects/*` and...

I have custom packages loading from private packagist.com and when I try to switch it to symlinks it's not working. I've tried // with "franzl/studio": ">=0.14.0", // with "minimum-stability": "dev",...

@gnutix @mailopl In addition to the commands above also do `rm -rf vendor` I got this tip from packagist.com (enterprise packagist) tech support. In short, composer can learn about packages...

I switched to developing on Ubuntu, and found the same issues on 0.13.0, so I tried this: ``` "require-dev" : { // stuff "franzl/studio": "0.14.0-beta1", // stuff } ``` and...

[realpath](http://php.net/realpath) returns `false` if the file is not present in the current directory. I think you've located the file one level up in your project, or `pwd` / `cwd` is...

I submitted [pull/103](https://github.com/salesforce-marketingcloud/FuelSDK-PHP/pull/103) for this

@pentium10 That’s exactly the reason for my fork of this package. In my fork, I removed the requirement for a config.php in the web root entirely. You can instead pass...