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 yesterday

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

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity51

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

2576d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8712465c0072cf9165361e9de1be00199befd6e3fdc7097cf6217fc20d9dfc3e?d=identicon)[knutle](/maintainers/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

[openai-php/laravel

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

3.7k7.6M74](/packages/openai-php-laravel)[statamic/cms

The Statamic CMS Core Package

4.8k3.2M720](/packages/statamic-cms)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[nickurt/laravel-postcodeapi

Universal PostcodeApi for Laravel 11.x/12.x/13.x

97221.2k](/packages/nickurt-laravel-postcodeapi)[mozex/anthropic-laravel

Anthropic PHP for Laravel is a supercharged PHP API client that allows you to interact with the Anthropic API

71226.4k1](/packages/mozex-anthropic-laravel)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

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

PHPackages © 2026

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