someguy123/proxmox

Laravel Bindings for the ZzAntares ProxmoxVE composer package
3 2
Install
composer require someguy123/proxmox
Latest Version:v1.0.0
PHP:>=5.4.0
License:LGPL-3
Last Updated:Sep 2, 2014
Links: GitHub  ·  Packagist
Maintainer: Someguy123

Proxmox Laravel Bindings

This package is a wrapper for the ProxmoxVE package made by ZzAntares (https://github.com/zzantares/proxmoxve). This package allows easy use of the ProxmoxVE package by adding a facade, and a config file.

License

This package is released under the LGPL. (Read LICENSE)

Tl;dr; you can use it in a proprietary project, but if you modify the actual library, you need to make your changes open source under the LGPL.

Installation

Add the package someguy123/proxmox to your composer.json

$ composer require someguy123/proxmox 1.*

or

{
    "require": {
        "someguy123/proxmox": "1.*"
    }
}

Add the service provider and alias to your app.php

'providers' => [
    // ...
    'Someguy123\Proxmox\ProxmoxServiceProvider',
    // ...
]

'aliases' => [
    // ...
    'Proxmox'         => 'Someguy123\Proxmox\ProxmoxFacade',
    // ...
]

Publish the configuration file

$ php artisan config:publish someguy123/proxmox

(Laravel 4.3 / 5)

$ php artisan publish:config someguy123/proxmox

Fill in app/config/packages/someguy123/proxmox/server.php or config/packages/someguy123/proxmox/server.php depending on your Laravel version. This file contains the Proxmox API connection information, and must be filled in before use. (you can also fill in the details in your environment file)

Usage

Refer to the original package for documentation. Instead of $proxmox->, use Proxmox::

Example:

$allnodes = Proxmox::get('/nodes');
dd($allnodes);

Donations

I accept both Bitcoin and Litecoin donations. Please be aware that I only created the wrapper, not the original Proxmox class.

Bitcoin: 1SomguYYsdeBFYv9ujGt1V64PwssXco5z

Litecoin: LYmpJZm1WrP5FSnxwkV2TTo5SkAF4Eha31

Related Packages

php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,312 160
laravel-ja/laravel

The Laravel Framework.

5,667 17
kavenegar/laravel

laravel 4 and 5 kavenegar integration

366,462 86
reliese/laravel

Reliese Components for Laravel Framework code generation.

3,954,390 1,705