PHPackages                             agiuscloud/linode-api-laravel - 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. agiuscloud/linode-api-laravel

ActiveLibrary[API Development](/categories/api)

agiuscloud/linode-api-laravel
=============================

Laravel package for Linode V4 Api

v1.1.1(8y ago)55902MITPHPPHP &gt;=7.0.0

Since Oct 16Pushed 8y ago2 watchersCompare

[ Source](https://github.com/edisoncosta/linode-api-laravel)[ Packagist](https://packagist.org/packages/agiuscloud/linode-api-laravel)[ RSS](/packages/agiuscloud-linode-api-laravel/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (4)Used By (0)

Linode Api V4 Laravel 5 package
===============================

[](#linode-api-v4-laravel-5-package)

[![Total Downloads](https://camo.githubusercontent.com/44ea14107fe89898a4fdcc91d6c528ab21f09fdf319f4e616f81dfedd1a40fdb/68747470733a2f2f706f7365722e707567782e6f72672f6167697573636c6f75642f6c696e6f64652d6170692d6c61726176656c2f646f776e6c6f616473)](https://packagist.org/packages/agiuscloud/linode-api-laravel)[![License](https://camo.githubusercontent.com/a3cfa7ec9e423cfb020e4b64c43f2dfe2ba9a981fdf7c1a9135d0df30e352f36/68747470733a2f2f706f7365722e707567782e6f72672f6167697573636c6f75642f6c696e6f64652d6170692d6c61726176656c2f6c6963656e7365)](https://github.com/edisoncosta/linode-api-laravel/blob/master/LICENSE)

A simple wrapper to get started with the Linode V4 Api.

Install
-------

[](#install)

```
composer require agiuscloud/linode-api-laravel

```

After updating composer, add the ServiceProvider to the providers array in config/app.php

```
AgiusCloud\Linode\LinodeServiceProvider::class

```

Optionally you can use the Facade. Add this to your facades:

```
'Linode' => AgiusCloud\Linode\Facades\Linode::class

```

Publish config file
-------------------

[](#publish-config-file)

```
php artisan vendor:publish

```

Add your personal access token to your config (/config/linode.php) or env file
------------------------------------------------------------------------------

[](#add-your-personal-access-token-to-your-config-configlinodephp-or-env-file)

```
LINODE_TOKEN=Your_personal_access_token

```

You can create your token by visiting [your Linode](https://cloud.linode.com/profile/tokens) if you are using the newer linode manager.

Usage
-----

[](#usage)

Add to your class

```
use AgiusCloud\Linode\Controllers\Linode;

```

To use

```
$linode = new Linode;

// list linodes
$linode->get('linode/instances');

// create a new linode
$linode->post('linode/instances', [
    "region" => "us-east-1a",
    "type" => "g5-standard-1"
]);

// update a linode
$linode->put('linode/instances/999', [
    "label" => "new label"
]);

// delete a linode
$linode->delete('linode/instances/999');

```

[Filtering &amp; Sorting](https://developers.linode.com/v4/filtering)

```
$linode->get('linode/distributions', [
    "vendor" => "Debian"
]);

$linode->get('linode/distributions', [
    "+or" =>
        [
            ["vendor" => "Debian"],
            ["deprecated" => true]
        ]
]);

```

Or, you can use the facade

```
Linode::get('linode/instances');

```

[Full API reference](https://developers.linode.com/v4/introduction)

License
-------

[](#license)

This Linode wrapper is open-sourced software licensed under the [MIT license](https://github.com/edisoncosta/linode-api-laravel/blob/master/LICENSE).

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity60

Established project with proven stability

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

Total

3

Last Release

3026d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8c6991923afcfad30940085f2611aa84e74a3a8e1b634d149d41864cecec6e1a?d=identicon)[agiuscloud](/maintainers/agiuscloud)

### Embed Badge

![Health badge](/badges/agiuscloud-linode-api-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/agiuscloud-linode-api-laravel/health.svg)](https://phpackages.com/packages/agiuscloud-linode-api-laravel)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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