PHPackages                             jobapis/jobs-goremote - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. jobapis/jobs-goremote

ActiveLibrary[API Development](/categories/api)

jobapis/jobs-goremote
=====================

Making it simple to integrate your application with the GoRemote RSS Feed.

0.1.0(9y ago)1231Apache-2.0PHPPHP &gt;=5.5.0

Since Feb 9Pushed 9y ago1 watchersCompare

[ Source](https://github.com/jobapis/jobs-goremote)[ Packagist](https://packagist.org/packages/jobapis/jobs-goremote)[ Docs](https://github.com/jobapis/jobs-goremote)[ RSS](/packages/jobapis-jobs-goremote/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (5)Versions (2)Used By (0)

[![JobApis.com](https://camo.githubusercontent.com/99f7a7ebb7ad8bf37b4df3ddc41ba43c190f949ae5ef1f5d1befef590212b36e/68747470733a2f2f692e696d6775722e636f6d2f39564f416b725a2e706e67)](https://www.jobapis.com) GoRemote RSS Feed Client
======================================================================================================================================================================================================================================

[](#-goremote-rss-feed-client)

[![Twitter URL](https://camo.githubusercontent.com/2561c1ca1992b206c8d5ef27979e3c60aa28e6c4f5def60b53d327fbe6b506e5/68747470733a2f2f696d672e736869656c64732e696f2f747769747465722f75726c2f68747470732f747769747465722e636f6d2f6a6f62617069732e7376673f7374796c653d736f6369616c266c6162656c3d466f6c6c6f772532302534306a6f6261706973)](https://twitter.com/jobapis)[![Latest Version](https://camo.githubusercontent.com/032eeac02e532cb7f7390ee3cde1244a6ea94600f94df4199bd440aae3e27d5e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6a6f62617069732f6a6f62732d676f72656d6f74652e7376673f7374796c653d666c61742d737175617265)](https://github.com/jobapis/jobs-goremote/releases)[![Software License](https://camo.githubusercontent.com/83a69279c9f2ed137be556c08d1ceaf2161ae96eeb88f8caade8ef619f2d6c27/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d415041434845253230322e302d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/161a820ae98159c4534f9776c5ae6e06d44463392837e30966b3101c26e38e9a/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6a6f62617069732f6a6f62732d676f72656d6f74652f6d61737465722e7376673f7374796c653d666c61742d7371756172652631)](https://travis-ci.org/jobapis/jobs-goremote)[![Coverage Status](https://camo.githubusercontent.com/3e9fe2b9a1493e7b4fc5d8c3dc95bc90876343466dad11a3fbb4f9a1aadbb23f/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6a6f62617069732f6a6f62732d676f72656d6f74652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/jobapis/jobs-goremote/code-structure)[![Quality Score](https://camo.githubusercontent.com/434fc114bce891185c53802a717c001c6c5eccdadce0a2e5addbd85b7a3bbcf1/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6a6f62617069732f6a6f62732d676f72656d6f74652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/jobapis/jobs-goremote)[![Total Downloads](https://camo.githubusercontent.com/bb94041c9581d6b27ae6b6751bf798060885127f27a9148afe1ab438ea1975b9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6f62617069732f6a6f62732d676f72656d6f74652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jobapis/jobs-goremote)

About
-----

[](#about)

This package helps PHP developers connect with the [GoRemote.io](https://goremote.io/) job board's RSS feed. In just a couple lines of code, you can grab job listings from GoRemote's feed.

### Example

[](#example)

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

See [Usage](#usage) section below for more detailed examples.

### Mission

[](#mission)

[JobApis](https://www.jobapis.com) makes job board and company data more accessible through open source software. To learn more, visit [JobApis.com](https://www.jobapis.com), or contact us at .

Requirements
------------

[](#requirements)

- [PHP 5.5+](http://www.php.net/)
- [Composer](https://getcomposer.org/)

Installation
------------

[](#installation)

You can install this package using Composer. From the command line, run:

```
$ composer require jobapis/jobs-goremote
```

Usage
-----

[](#usage)

GoRemote provides no search parameters, just a feed of all their latest jobs via RSS. In order to get the latest job listings, first create a query object.

```
$query = new JobApis\Jobs\Client\Queries\GoRemoteQuery();
```

Then inject the query object into the provider.

```
$client = new JobApis\Jobs\Client\Providers\GoRemoteProvider($query);
```

And call the "getJobs" method to retrieve results.

```
$jobs = $client->getJobs();
```

The `getJobs()` method will return a [Collection](https://github.com/jobapis/jobs-common/blob/master/src/Collection.php) of [Job](https://github.com/jobapis/jobs-common/blob/master/src/Job.php) objects based on Schema.org's [JobPosting](https://schema.org/JobPosting) specification.

Testing
-------

[](#testing)

1. Clone this repository from Github.
2. Install the dependencies with Composer: `$ composer install`.
3. Run the test suite: `$ ./vendor/bin/phpunit`.
4. (Optional) Run the test suite with real HTTP calls to the API: `$ REAL_CALL=1 ./vendor/bin/phpunit`.

A code coverage report will be generated in the `build/` directory at the root of the project.

Contributing
------------

[](#contributing)

Please see [JobApis' contribution guidelines](https://www.jobapis.com/contributing/) for details.

Legal
-----

[](#legal)

### Disclaimer

[](#disclaimer)

This package is not affiliated with or supported by GoRemote and we are not responsible for any use or misuse of this software.

### License

[](#license)

This package uses the Apache 2.0 license. Please see the [License File](https://www.jobapis.com/license/) for more information.

### Copyright

[](#copyright)

Copyright 2017, [Karl Hughes](https://github.com/karllhughes).

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3380d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8f48fe8aced156a4651617032e4d126d7e3f696e46539688b3bda792d28ee0b4?d=identicon)[karllhughes](/maintainers/karllhughes)

---

Top Contributors

[![karllhughes](https://avatars.githubusercontent.com/u/1103622?v=4)](https://github.com/karllhughes "karllhughes (19 commits)")

---

Tags

api-clientgoremotejob-boardphpapi clientjobsgoremote

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/jobapis-jobs-goremote/health.svg)

```
[![Health](https://phpackages.com/badges/jobapis-jobs-goremote/health.svg)](https://phpackages.com/packages/jobapis-jobs-goremote)
```

###  Alternatives

[jobapis/jobs-common

Making it simple to integrate your application with job api providers.

4459.3k32](/packages/jobapis-jobs-common)[jobapis/jobs-ziprecruiter

Making it simple to integrate your application with ZipRecruiter Jobs API.

134.9k1](/packages/jobapis-jobs-ziprecruiter)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
