Download the PHP package presi/app-center-laravel without Composer
On this page you can find all versions of the php package presi/app-center-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download presi/app-center-laravel
More information about presi/app-center-laravel
Files in presi/app-center-laravel
Informations about the package app-center-laravel
App Center API Wrapper for laravel
Introduction
This is a App Center wrapper library for Laravel. This packages is based on App Center API endpoints located at https://openapi.appcenter.ms, the main intention for this package is for simplified the consume and comunication with tools more used on dev mobile enviroment. You can set a configuration of your product and make calls to methods that envolving parameters and requirements for whole endpoints.
Well, before install this packages, you should make and register an app at https://appcenter.ms/, then you will be create an api token with access like "Full Access" or "Read only" for your apps
Installation
You'll need to require the package with Composer:
Then discovery packages are done, from the command line again, run
to publish the default configuration file.
This will publish a configuration file named appcenter.php
which includes your Api token and owner name
Configuration
For complete setup you need to fill in appcenter.php
file that is found in your applications config
directory.
owner_name
is your Username and api_token
which is located at settings account.
Usage
Read Analytics Events on App
You can retrive data of events with this code
$events = AppCenter::readEvents({{app-name}},\Carbon\Carbon::now()->subDays(7));
All versions of app-center-laravel with dependencies
guzzlehttp/guzzle Version ^6.2
illuminate/support Version 4.*|5.*
symfony/psr-http-message-bridge Version 1.*