PHPackages                             klepak/laravel-remedy - 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. klepak/laravel-remedy

AbandonedArchivedLibrary[API Development](/categories/api)

klepak/laravel-remedy
=====================

Provides integration with Remedy 9 REST API

v0.2(7y ago)122PHP

Since Feb 18Pushed 7y ago1 watchersCompare

[ Source](https://github.com/klepak/laravel-remedy)[ Packagist](https://packagist.org/packages/klepak/laravel-remedy)[ RSS](/packages/klepak-laravel-remedy/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependencies (6)Versions (3)Used By (0)

install package with composer
publish vendor files
add settings to .env

```
REMEDY_TEST=true

TEST_REMEDYAPI_HOST=

REMEDYAPI_HOST=
REMEDYAPI_USERNAME=
REMEDYAPI_PASSWORD=

TEST_REMEDY_DB_HOST=

REMEDY_DB_HOST=
REMEDY_DB_PORT=
REMEDY_DB_DATABASE=
REMEDY_DB_USERNAME=
REMEDY_DB_PASSWORD=

```

You can specify all the settings with TEST\_ prefix, but if they are not defined it will fall back to the standard settings. The only ones that will not are the HOST settings.

add connection to database config

```
'remedy' => [
    'driver' => 'sqlsrv',
    'host' => env('REMEDY_TEST', false) ? env('TEST_REMEDY_DB_HOST') : env('REMEDY_DB_HOST'),
    'port' => env('REMEDY_TEST', false) ? env('TEST_REMEDY_DB_PORT', env('REMEDY_DB_PORT')) : env('REMEDY_DB_PORT'),
    'database' => env('REMEDY_TEST', false) ? env('TEST_REMEDY_DB_DATABASE', env('REMEDY_DB_DATABASE')) : env('REMEDY_DB_DATABASE'),
    'username' => env('REMEDY_TEST', false) ? env('TEST_REMEDY_DB_USERNAME', env('REMEDY_DB_USERNAME')) : env('REMEDY_DB_USERNAME'),
    'password' => env('REMEDY_TEST', false) ? env('TEST_REMEDY_DB_PASSWORD', env('REMEDY_DB_PASSWORD')) : env('REMEDY_DB_PASSWORD'),
    'charset' => 'utf8',
    'prefix' => '',
],

```

**Model Scopes**The default scope on each model is set to select only the most relevant properties. If you want to see all available properties, call withoutGlobalScope("standard") on your model instance. For example:

```
WorkOrder::withoutGlobalScope('standard')->get();

```

**Creating cases**Case data provided to create() method will be supplemented with default values from API model. See API doc for an overview.

*Incident*

```
(new Incident)->api()->create([
    "Login_ID" => "(Customer Login ID)",

    "Support_Company" => "(Support Company to assign case to)",
    "Support_Organization" => "(Support Organization to assign case to)",
    "Assigned_Group" => "(Support Group to assign case to)",

    "Description" => "(Case Title)"
]);

```

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

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

Total

2

Last Release

2626d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1419066?v=4)[Knut Leborg](/maintainers/knutle)[@knutle](https://github.com/knutle)

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/klepak-laravel-remedy/health.svg)

```
[![Health](https://phpackages.com/badges/klepak-laravel-remedy/health.svg)](https://phpackages.com/packages/klepak-laravel-remedy)
```

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.6M966](/packages/statamic-cms)[backpack/crud

Quickly build admin interfaces using Laravel, Bootstrap and JavaScript.

3.4k3.7M223](/packages/backpack-crud)[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k9.5M86](/packages/openai-php-laravel)[unopim/unopim

UnoPim Laravel PIM

10.5k2.4k](/packages/unopim-unopim)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M46](/packages/tencentcloud-tencentcloud-sdk-php)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

783.8k](/packages/scriptdevelop-whatsapp-manager)

PHPackages © 2026

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