MoeBrowne
MoeBrowne
This PR adds SRI attributes and an explicit `https` protocol to remote assets
There were a number of places where the URLs were wrong, unsecure or redirected.
Peer verification should ALWAYS be enabled. Disabling it prevents authenticity checks and allows anyone with a certificate to impersonate livechat in a man in the middle attack. - https://secure.php.net/manual/en/function.curl-setopt.php#110457 -...
This adds compatibility with Laravel 6
Currently the order of the arguments in the usage output is somewhat arbitrary need to order A-Z. Best way to approach it may be to get all the keys of...
Add the ability to define what the type/format of an argument is, for example you could define an argument to only be valid if its only numbers or at least...
Add the ability to turn an argument into an array when its repeatedly passed. For example `--set 1 --set 2 --set 3` would cause `argValue 'set'` to return `(1,2,3)` as...
Currently if you leave the description of an argument blank it will still be shown in the usage, it should be skipped instead