Careers in Government and GoRemote RSS Clients Released

2017-02-09

This month, we released two new job board clients: CareersInGovernment.com (Github) and GoRemote.io (Github). Both of these clients use RSS feeds to get the latest job listings.

Usage for each is pretty simple as there are no parameters that can be injected in the Query Objects.

Careers in Government

Install the package with Composer, and require the vendor file in your project. After the package is installed, you can get the latest listings in a couple lines of code:

1
2
$client = new CareersInGovProvider(new CareersInGovQuery());
$jobs = $client->getJobs();

For more detailed documentation see this project’s readme file.

GoRemote

Install the package with Composer, and require the vendor file in your project. After the package is installed, you can get the latest listings in a couple lines of code:

1
2
$client = new GoRemoteProvider(new GoRemoteQuery());
$jobs = $client->getJobs();

For more detailed documentation see this project’s readme file.