6 ms·
At the time we were using that particular library heavily at WizeHire. I had built the tool for personal convenience. rmccue/requests was likely one of the firs
by NickC_dev 5y ago
At the time we were using that particular library heavily at WizeHire. I had built the tool for personal convenience. rmccue/requests was likely one of the first "generators".
I expect that we'd accept a PR for PHP curl library implementation. Having a non-third-party option would be valuable.
- binwiederhier 5y agoI am on my phone so I can't contribute a PR right now, but here are tons of PHP examples: https://ntfy.sh/docs/publish/ https://ntfy.sh/docs/publish/ Also check the other pages on the docs. Here's one example: file_get_contents('https://ntfy.sh/mytopic', false, stream_context_create([ 'http' => [ 'method' => 'POST', // PUT also works 'header' => 'Content-Type: text/plain', 'content' => 'Backup successful ' ] ]));
- verhovsky 5y agoSomeone contributed a PR that replaced the PHP output with libcurl