veryard / laravel-vultr
Laravel Vultr
dev-main
2022-06-16 19:37 UTC
Requires
- php: ^7.2.5 || ^8.0
- illuminate/contracts: ^6.0 || ^7.0 || ^8.0 || ^9.0
- illuminate/support: ^6.0 || ^7.0 || ^8.0 || ^9.0
- veryard/vultr-php-api: dev-main
Requires (Dev)
- mockery/mockery: ^1.3.1
- phpunit/phpunit: ^8.5.8 || ^9.3.7
This package is auto-updated.
Last update: 2025-03-17 01:35:52 UTC
README
Laravel Vultr requires PHP 7.2-8.1. This particular version supports Laravel 8-9.
To install the latest version, simple require this package using Composer. Currently the only working adapter is CURL.
$ composer require "veryard/laravel-vultr"
Once installed, if you are not using automatic package discovery, then you need to register the Vultr\Laravel\VultrServiceProvider
service provider in your config/app.php
.
You can also optionally alias our facade:
'Vultr' => Vultr\Laravel\Facades\Vultr::class,
Configuration
Laravel Vultr requires connection configuration
To get start, you'll need to pubish the vendor assets:
$ php artisan vendor:publish --provider="Vultr\Laravel\VultrServiceProvider"
This will create a config/vultr.php
file in your app, you will need to add the following to your .ENV
VULTR_API_TOKEN="YOUR_TOKEN"