HireALite / laravel-tom-tom by Jono20201

Laravel based API For TomTom Webfleet .Connect
13,648
0
15
Package Data
Maintainer Username: Jono20201
Maintainer Contact: dev@hire-a-lite.com (Hire-A-Lite DevOps)
Package Create Date: 2015-10-27
Package Last Update: 2017-02-14
Language: PHP
License: GPL-3.0
Last Refreshed: 2024-05-03 15:19:20
Package Statistics
Total Downloads: 13,648
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 15
Total Forks: 2
Total Open Issues: 0

laravel-tom-tom

API Client for Laravel 5 that connects with TomTom's Webfleet .Connect API.

Currently supported calls:

  • createSession
  • showUsers
  • showObjectReport
  • showVehicleReport
  • sendOrder
  • sendDestinationOrder
  • showAddressReport
  • insertAddress
  • updateAddress
  • deleteAddress

It is also relatively easy to add your own methods quickly, please submit a PR with any improvements.

Still heavily in development and probably shouldn't be used in a commercial project.

Installation

Run the following command in your Laravel installation.

composer require hirealite/laravel-tom-tom

Once its installed add the following provider to your config.php:

Hirealite\LaravelTomTom\TomTomServiceProvider::class

And the Facade:

'TomTom' => \Hirealite\LaravelTomTom\Facades\TomTom::class,

then run the following command to generate the configuration file:

php artisan vendor:publish

You'll then need to add your TomTom API into the config/tomtom.php file.