PHPackages                             workingconcept/craft-lever - 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. workingconcept/craft-lever

AbandonedArchivedCraft-plugin

workingconcept/craft-lever
==========================

Lever + Craft CMS.

2.0.0(3y ago)33372MITPHPPHP ^8.0.2

Since Dec 12Pushed 3y ago1 watchersCompare

[ Source](https://github.com/workingconcept/lever-craft-plugin)[ Packagist](https://packagist.org/packages/workingconcept/craft-lever)[ RSS](/packages/workingconcept-craft-lever/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (4)Dependencies (4)Versions (12)Used By (0)

[![Lever](resources/hero.svg)](resources/hero.svg)

Lever Craft CMS 4 Plugin
========================

[](#lever-craft-cms-4-plugin)

#### Get [Lever](https://www.lever.co/) job details and post applications directly from Craft.

[](#get-lever-job-details-and-post-applications-directly-from-craft)

[![Scrutinizer status](https://camo.githubusercontent.com/c72788fc52c1af7f76cd70a2838419d7ff49cb1e666592c70d8ee8a8e915fecc/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f776f726b696e67636f6e636570742f6c657665722d63726166742d706c7567696e2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/workingconcept/lever-craft-plugin/)

---

Installation &amp; Setup
------------------------

[](#installation--setup)

- `composer require workingconcept/craft-lever`
- `php craft install lever` or install from *Settings* → *Plugins* in the control panel
- add your site and API details in the control panel via *Settings* → *Lever*

Development
-----------

[](#development)

### Templating

[](#templating)

#### `craft.lever.jobs([])`

[](#craftleverjobs)

Returns an array of jobs. Supply valid parameters for the [job postings API](https://github.com/lever/postings-api) if you need to tailor the results.

#### `craft.lever.job(id)`

[](#craftleverjobid)

Returns a specific job matching the provided Lever ID, or `false`.

#### Job Properties

[](#job-properties)

- `id`
- `text`
- `categories`
- `country`
- `description`
- `descriptionPlain`
- `lists`
- `additional`
- `additionalPlain`
- `hostedUrl`
- `applyUrl`
- `createdAt`
- `workplaceType`

### Template Examples

[](#template-examples)

#### List Jobs

[](#list-jobs)

```
{% set positions = craft.lever.jobs %}

Work with Us!

{% for position in positions %}
    {{ position.text }}
{% endfor %}

```

#### Custom Job Application Form

[](#custom-job-application-form)

You can create your own form and validation and submit it with an `action` field set to `lever/apply`. Use any fields named exactly as seen in the [postings API](https://github.com/lever/postings-api), with `jobId`, `name`, and `email` being required.

```
Apply

{% if application is defined and application.getErrors() | length %}
    {% for field in application.getErrors() %}
        {% for error in field %}
            {{ error }}
        {% endfor %}
    {% endfor %}
{% endif %}

    {{ csrfInput() }}
    {{ redirectInput(craft.app.request.absoluteUrl ~ "?success=y") }}

    {{ application.comments ?? '' }}

    Submit

```

### Establishing Custom Job Detail Pages

[](#establishing-custom-job-detail-pages)

You can display all job details on your site if you'd like, including custom detail pages. One way you might go about that is to create a detail page template like `jobs/_detail.twig` and set up a custom route for it.

Barebones template:

```
{% extends "_layout" %}

{% set job = craft.lever.job(id) %}

{% if job is empty %}
    {% exit 404 %}
{% endif %}

{% block content %}

...
```

Custom route in `config/routes.php`:

```
return [
    'jobs/' => ['template' => 'jobs/_detail'],
];
```

This will take requests like `https://site.foo/jobs/be9f3647-b59a-4272-94a0-8b937520a69f` and send them to your template, where they'll 404 if the ID is invalid.

### Events

[](#events)

##### `EVENT_BEFORE_VALIDATE_APPLICATION`

[](#event_before_validate_application)

Triggered after an application is submitted and before it's validated. You can adjust `$event->application` if you need to do something custom like handle a [FilePond](https://pqina.nl/filepond/) upload and attach it to the LeverJobApplication model.

##### `EVENT_BEFORE_SEND_APPLICATION`

[](#event_before_send_application)

Triggered after an application is submitted and before it's sent to Lever. Grab the application data from `$event->application` and prevent it from being sent by setting `$event->isSpam` to `true`.

##### `EVENT_AFTER_SEND_APPLICATION`

[](#event_after_send_application)

Triggered immediately after an application is sent to Lever successfully. Same `$event->application` and `$event->isSpam` properties available.

Support
-------

[](#support)

Please submit [an issue](https://github.com/workingconcept/lever-craft-plugin/issues) or [a pull request](https://github.com/workingconcept/lever-craft-plugin/pulls) if anything needs attention. We'll do our best to respond promptly.

---

This plugin is brought to you by [Working Concept](https://workingconcept.com), which has no affiliation with Lever.

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity72

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 ~155 days

Recently: every ~342 days

Total

10

Last Release

1309d ago

Major Versions

1.0.5 → 2.0.02022-10-12

PHP version history (3 changes)1.0.0-beta.1PHP ^7.0.0

1.0.5PHP ^7.0.0|^8.0.0

2.0.0PHP ^8.0.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/5e0d8e8a2b2564922c84a3e8e552d6da91645aceb3121938b3c5ef1037429ff7?d=identicon)[mattstein](/maintainers/mattstein)

---

Top Contributors

[![mattstein](https://avatars.githubusercontent.com/u/2488775?v=4)](https://github.com/mattstein "mattstein (31 commits)")

---

Tags

craft-plugincraft3craftcmslevercmsCraftcraftcmscraft-pluginlever

###  Code Quality

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/workingconcept-craft-lever/health.svg)

```
[![Health](https://phpackages.com/badges/workingconcept-craft-lever/health.svg)](https://phpackages.com/packages/workingconcept-craft-lever)
```

###  Alternatives

[nystudio107/craft-seomatic

SEOmatic facilitates modern SEO best practices &amp; implementation for Craft CMS 5. It is a turnkey SEO system that is comprehensive, powerful, and flexible.

1741.4M46](/packages/nystudio107-craft-seomatic)[verbb/image-resizer

Resize assets when they are uploaded.

127269.1k7](/packages/verbb-image-resizer)[verbb/tablemaker

Create customizable and user-defined table fields.

40168.8k1](/packages/verbb-tablemaker)[verbb/hyper

A user-friendly links field for Craft.

24130.9k9](/packages/verbb-hyper)[verbb/social-poster

Automatically post entries to social media.

918.5k](/packages/verbb-social-poster)[acclaro/translations

Easily launch and manage multilingual Craft websites without having to copy/paste content or manually track updates.

1229.5k](/packages/acclaro-translations)

PHPackages © 2026

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