Download the PHP package amelia/monzo-php without Composer

On this page you can find all versions of the php package amelia/monzo-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package monzo-php

Monzo PHP Client

This library allows access to the Monzo API in PHP. This library requires PHP 7.1+.

Installation

If you don't already have your own access tokens from completing oauth yourself, you'll need to also composer require laravel/socialite.

You should set the following variables in your .env (or otherwise):

You can create an application at https://developers.monzo.com.

Laravel integration

Amelia\Monzo\MonzoServiceProvider::class is registered automatically in Laravel 5.5.

A future version of this package will include automatic webhook handling per-user, and full automatic socialite integration.

The environment variables that control these will be:

Socialite integration

To automatically add callbacks for socialite, this package provides an optional authentication system.

Caveat This assumes you are adding existing users to an app on monzo. If you are not doing this, you'll need to set up your own routes to create/manage users based on API responses from socialite.

First, add the MonzoCredentials trait to your Authenticatable user model.

This adds a bunch of setters/getters to your user model for handling monzo credentials.

You can customise the columns used by adding methods to your user model:

Socialite migrations

Assuming your users table is named users, you can simply run php artisan vendor:publish --tag=monzo.

This will create a migration in your migrations directory that can be edited.

Run php artisan migrate to run this.

Usage

Caveat If not using Laravel, you'll need to set up an instance of Amelia\Monzo\Monzo and inject an Amelia\Monzo\Contracts\Client instance into it, as follows:

If using Laravel, you only need to inject Amelia\Monzo\Monzo via the service container, using resolve() or app().

Using the API is pretty simple.

In general, you'll need an access token or a user object.

Examples

Grab a user's accounts.

Grab the last 100 transactions for a user account

Grab the last 100 transactions for a user's default account

Grab a paginator instance for a user's transactions

Expand (and hydrate) relations in the API

See a user's balance


All versions of monzo-php with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1
illuminate/support Version ~5.5
guzzlehttp/guzzle Version ^6.3
ramsey/uuid Version ^3.7
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package amelia/monzo-php contains the following files

Loading the files please wait ....