Programming

How to Exclude Certain WiFi Networks from OnDemand VPN on Apple Devices (IKEv2 or Other VPN Types)

When using IKEv2 or any other VPN on Apple devices (iPhone, iPad, macOS) with the OnDemand feature, the VPN will automatically connect under specified conditions, such as when your device connects to WiFi or cellular networks. However, there are certain situations where you might not want the VPN to connect automatically—for example, if you’re connected

How to Exclude Certain WiFi Networks from OnDemand VPN on Apple Devices (IKEv2 or Other VPN Types) Read More »

Using Composer Create Project with a local repository

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

Using Composer Create Project with a local repository Read More »