PHPackages                             42sol/laravel-youtrack-client - 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. 42sol/laravel-youtrack-client

ActiveLibrary[API Development](/categories/api)

42sol/laravel-youtrack-client
=============================

YouTrack API client

1.0.8(11mo ago)254MITPHP

Since Jan 13Pushed 11mo ago1 watchersCompare

[ Source](https://github.com/42-sol/laravel-youtrack-client)[ Packagist](https://packagist.org/packages/42sol/laravel-youtrack-client)[ RSS](/packages/42sol-laravel-youtrack-client/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (8)Dependencies (1)Versions (10)Used By (0)

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

[](#installation)

### Include service provider in your app

[](#include-service-provider-in-your-app)

Insert library service provider `YouTrackClient\Providers\YouTrackClientProvider::class` in your `config/app.php` file:

```
'providers' => [
    // other service providers
    YouTrackClient\Providers\YouTrackClientProvider::class,
]
```

### Publish packages resources

[](#publish-packages-resources)

This will create `config/youtrack.php` configuration file.

```
php artisan vendor:publish --provider="YouTrackClient\Providers\YouTrackClientProvider"
```

### Configure

[](#configure)

After publishing package resources you can edit configuration in `config/youtrack.php` file.

To set your YouTrack instance add to `.env` variables:

```
YT_BASE_URL=https://youtrack.example.com               # required
# YT_HUB_URL=https://youtrack.example.com/hub/api/rest # optional
YT_TOKEN="youtrack access token"                       # required
```

### Default routing

[](#default-routing)

If needed, use `YouTrackClient\YouTrackRoutes::apply();` to make default library routes, e.g.:

```
/**
 * This will make routes:
 *  - /yt/projects
 *  - /yt/issues
 *  - ...
 */
Route::prefix('/yt')->group(function () {
    YouTrackClient\YouTrackRoutes::apply();
});
```

Routes:

- `/projects` - get all projects
- `/projects/{id}` - get detailed project information by id
- `/projects/{id}/issues` - get project issues
- `/projects/{id}/timeTrackingSettings` - get project time tracking settings
- `/agiles` - get all agile board
- `/agiles/{id}` - get detailed agile information by id
- `/issues?query=&offset=0&limit=50` - get issues by filter
- `/issues/{id}` - get detailed issue information by id
- `/organizations` - get all organizations
- `/users` - get all users

Usage
-----

[](#usage)

### Manually

[](#manually)

```
use YouTrackClient\YouTrackClient;

$client = new YouTrackClient([
    'baseUrl' => 'https://youtrack.example.com/api',
    'hubUrl' => 'https://youtrack.example.com/hub/api/rest', // optional
    'token' => ''
]);

$client->getProjects();
```

### With dependency injection:

[](#with-dependency-injection)

```
use YouTrackClient\YouTrackClient;

class YoutrackTestController extends Controller
{
    private YouTrackClient $client;

    // YouTrackClient will be injected here
    public function __construct(YouTrackClient $client)
    {
        $this->client = $client;
    }

    public function getProjects() {
        return $this->client->getProjects();
    }
}
```

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance50

Moderate activity, may be stable

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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

Every ~153 days

Recently: every ~147 days

Total

9

Last Release

354d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7752531d8f8f9f25c6813511f5d23618ad4840a9c380877ce3c2eefdfc029310?d=identicon)[disaipe](/maintainers/disaipe)

---

Top Contributors

[![disaipe](https://avatars.githubusercontent.com/u/15032597?v=4)](https://github.com/disaipe "disaipe (8 commits)")

---

Tags

laravelyoutrackyoutrack-clientyoutube-api

### Embed Badge

![Health badge](/badges/42sol-laravel-youtrack-client/health.svg)

```
[![Health](https://phpackages.com/badges/42sol-laravel-youtrack-client/health.svg)](https://phpackages.com/packages/42sol-laravel-youtrack-client)
```

###  Alternatives

[darkaonline/l5-swagger

OpenApi or Swagger integration to Laravel

2.9k34.0M112](/packages/darkaonline-l5-swagger)[echolabsdev/prism

A powerful Laravel package for integrating Large Language Models (LLMs) into your applications.

2.3k388.3k10](/packages/echolabsdev-prism)[sburina/laravel-whmcs-up

WHMCS API client and user provider for Laravel

271.3k](/packages/sburina-laravel-whmcs-up)

PHPackages © 2026

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