TL;DR: You need to pass the location of the local folder as a repository and then make sure you set the “–prefer-dist” value to “@dev”. Just replace everything in caps below and you are good to go! composer create-project –prefer-dist SOURCE_SCOPE/SOURCE_NAME=”@dev” NEW_PROJECT_NAME –repository ‘{“type”: “path”, “url”: “/PATH/TO/THE/SOURCE/PROJECT”, “options”: {“symlink”: false}}’ I was recently working on […]
You are browsing archives for
Category: Programming
Zipping files on Mac without .DS_Store a...
If you have ever compressed a folder on Mac and then opened it on another machine with a different operating system like Windows you have no doubt seen that there are 2 files you didn’t expect in the final folder. The .DS_Store and __MACOS files are used by MacOS, but don’t do anything on other […]
Getting Chrome to recognize a self signe...
TL:DR You need to become create a CA cert and then use that to sign your self signed cert. You can then add the CA cert to your system which will cause your other cert to be trusted. First some background. For years now I have had servers here at the house that are only […]
Next and Previous Row With Jquery DataTa...
So in a recent project I have been working on there has been a lot of jquery DataTables. At first I was a little concerned by this, but I must say that overall I have been really impressed with the plugin. If you are not familiar with it or just want to check it out […]
JSON Vs. PHP HTMLEntities and the headac...
So my programming pet project at the moment is a CRM-ish type application. I am writing it using primarily JavaScript/Jquery and PHP. I have never really been a huge fan of javascript, but if you want a dynamic front end with PHP power you need run PHP via ajax. So now comes the headache part. […]