PHPackages                             drteam/pcrecruiter - 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. drteam/pcrecruiter

AbandonedArchivedLibrary[API Development](/categories/api)

drteam/pcrecruiter
==================

PHP library for work with PCRecruiter RESTful API

1.2.2.1(8y ago)262MITPHPPHP &gt;=5.4 || &gt;=7.0

Since Aug 12Pushed 8y ago1 watchersCompare

[ Source](https://github.com/DrTeamRocks/pcrecruiter)[ Packagist](https://packagist.org/packages/drteam/pcrecruiter)[ Docs](https://github.com/DrTeamRocks/pcrecruiter)[ RSS](/packages/drteam-pcrecruiter/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (2)Versions (24)Used By (0)

[![PCRecruiter PHP API Logo](extra/pcr.png)](extra/pcr.png)

PCRecruiter PHP
===============

[](#pcrecruiter-php)

[![Latest Stable Version](https://camo.githubusercontent.com/f100b8b24e7542ee14e5c96b525ce54aba49b65056c63dd16e493b72c589494b/68747470733a2f2f706f7365722e707567782e6f72672f64727465616d2f70637265637275697465722f762f737461626c65)](https://packagist.org/packages/drteam/pcrecruiter)[![Build Status](https://camo.githubusercontent.com/fd55a1c3b57054a534fedabab9334ed2d15d3c3c1177ab273ebed679eccdbde2/68747470733a2f2f7472617669732d63692e6f72672f44725465616d526f636b732f70637265637275697465722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/DrTeamRocks/pcrecruiter)[![Total Downloads](https://camo.githubusercontent.com/592d7c235bd5ef7ab8e027e44eb3e76d7221ca496087effbe7bbee9da2f3ee51/68747470733a2f2f706f7365722e707567782e6f72672f64727465616d2f70637265637275697465722f646f776e6c6f616473)](https://packagist.org/packages/drteam/pcrecruiter)[![License](https://camo.githubusercontent.com/e5f65bef89447e1fbb685029cbfba12081137f2261e9a949e527fc4de82275f6/68747470733a2f2f706f7365722e707567782e6f72672f64727465616d2f70637265637275697465722f6c6963656e7365)](https://packagist.org/packages/drteam/pcrecruiter)[![PHP 7 ready](https://camo.githubusercontent.com/415999e37b9b45f029cd855236ee26f58798d87476b7cfc51455662756bb74e6/68747470733a2f2f7068703772656164792e74696d6573706c696e7465722e63682f44725465616d526f636b732f70637265637275697465722f6d61737465722f62616467652e737667)](https://travis-ci.org/DrTeamRocks/pcrecruiter)

PHP library for work with PCRecruiter RESTful API

```
composer require drteam/pcrecruiter

```

Examples
--------

[](#examples)

### Get AccessToken for work with PCR

[](#get-accesstoken-for-work-with-pcr)

```
// Enable autoload
require_once __DIR__ . "/vendor/autoload.php";

// Create the Token object
$pcr_token = new PCRecruiter\Token();
$pcr_token->setConfig(__DIR__ . "/pcr.php");

// Get the token
$token = $pcr_token->get()['message']->SessionId;

// Return the json
header('Content-Type: application/json');
echo json_encode($token);
```

### Get all jobs (positions) from PCR

[](#get-all-jobs-positions-from-pcr)

```
// Enable autoload
require_once __DIR__ . "/vendor/autoload.php";

// Get the token
$pcr_token = new PCRecruiter\Token();
$pcr_token->setConfig(__DIR__ . "/pcr.php");

// Get the token
$token = $pcr_token->get()['message']->SessionId;

// Get all positions
$pcr_positions = new PCRecruiter\Positions($token);
$positions = $positions->get()['message']->Results;

// Return the json
header('Content-Type: application/json');
echo json_encode($positions);
```

Any other examples you can find on "[examples](https://github.com/DrTeamRocks/pcrecruiter/tree/master/extra)" page.

Where to get help
-----------------

[](#where-to-get-help)

If you need help with this project, you can read more about [API Methods](https://github.com/DrTeamRocks/pcrecruiter/wiki/API-methods).

If you found the bug, please report about this on [GitHub Issues](https://github.com/DrTeamRocks/pcrecruiter/issues) page.

About PHP Unit Tests
--------------------

[](#about-php-unit-tests)

- Candidates.php
- Companies.php
- Client.php
- Interviews.php
- Placements.php
- Positions.php
- RollupLists.php
- Token.php
- Users.php

You can run tests by hands from source directory via `vendor/bin/phpunit` command.

Developers
----------

[](#developers)

- [Paul Rock](https://github.com/EvilFreelancer)

What inspired and some links
----------------------------

[](#what-inspired-and-some-links)

Created under the influence the lack of such a project on the Internet 😄

- [PCRecruiter](https://www.pcrecruiter.net/) - This company provides a lots of services that can be useful for recruitment agencies.
- [PCRecruiter API](https://www.pcrecruiter.net/apidocs_v2/) - Official documentation about all API calls.
- [Guzzle](https://github.com/guzzle/guzzle) - An extensible PHP HTTP client, what i very like.

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity68

Established project with proven stability

 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

Every ~20 days

Total

23

Last Release

3114d ago

Major Versions

0.5.1 → 1.02017-03-23

PHP version history (4 changes)0.1PHP &gt;=5.4.0

1.2.0PHP &gt;=7.0

1.2.2PHP &gt;=5.6 || &gt;=7.0

1.2.2.1PHP &gt;=5.4 || &gt;=7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/30aaf0db0441cada5c2d80127a9123e7f6f4091f7faf79d3f13001ef379373f4?d=identicon)[EvilFreelancer](/maintainers/EvilFreelancer)

---

Top Contributors

[![EvilFreelancer](https://avatars.githubusercontent.com/u/9089568?v=4)](https://github.com/EvilFreelancer "EvilFreelancer (26 commits)")

---

Tags

pcrecruiter-apipcrecruiter-phpphp-libraryrest-apiREST APIpcrecruiterpcr

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/drteam-pcrecruiter/health.svg)

```
[![Health](https://phpackages.com/badges/drteam-pcrecruiter/health.svg)](https://phpackages.com/packages/drteam-pcrecruiter)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[grok-php/client

Grok PHP Client is a robust and community-driven PHP client library for seamless integration with Grok AI API, offering efficient access to advanced AI and data processing capabilities.

325.9k4](/packages/grok-php-client)

PHPackages © 2026

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