mustafakucuk/php-linear-api

A simple Object Oriented wrapper for Linear API, written with PHP.

v1.0.0 2022-06-06 21:36 UTC

This package is auto-updated.

Last update: 2025-03-25 13:22:18 UTC


README

A simple Object Oriented wrapper for Linear API, written with PHP.

NOTE

Installation

You can install this package with composer:

composer require mustafakucuk/php-linear-api

Documentation

You can read the documentation of this package go to docs directory.

Basic Usage

require_once 'vendor/autoload.php';

use LinearApi\Client;

$client = new Client('<your-api-key>');

$issues = $client->issues->list([
    'id',
    'title'
]);