ssx / statuscake-ping
This package provides a couple of traits to be used with push tests for StatusCake.
Requires
- guzzlehttp/guzzle: ~6.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2024-10-26 19:24:31 UTC
README
There are two traits in this package that will ping off to a StatusCake push test, either on destruct of a class or via the ping() method.
The two traits included in this package are \SSX\StatusCake\DestructPing
and
\SSX\StatusCake\ManualPing
. Using the DestructPing
trait will fire the ping
on the destruction of the class. If you would prefer to fire the ping manually
then you can use the ManualPing
trait and $this->ping()
method.
Make sure to set the env variables STATUSCAKE_KEY
and also STATUSCAKE_TESTID
.
Push notification documentation can be found at: http://kb.statuscake.com/hc/en-us/articles/203808141-Push-Monitoring
Tests
To run the included tests, edit phpunit.xml and set the following variables:
<env name="STATUSCAKE_PK" value="dfa375e414765d6"/>
<env name="STATUSCAKE_TESTID" value="543345"/>
To match yours test credentials.