Skip to content

Commit

Permalink
Updated to be compatible with Laravel 8
Browse files Browse the repository at this point in the history
  • Loading branch information
henryejemuta committed Sep 11, 2020
1 parent a2a83e0 commit 5078b60
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

All notable changes to `laravel-monnify` will be documented in this file

- Release
## 1.0.0 2020-09-11 Fix issue calculateTransactionHash #3 and update to work with Laravel 8

- Alpha release
## 1.0.1-alpha - 2020-07-20

## 1.0.0-alpha - 2020-07-15

- initial release
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Laravel Monnify

[![Build Status](https://travis-ci.org/orobogenius/sansdaemon.svg?branch=master)](https://travis-ci.org/orobogenius/sansdaemon)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/henryejemuta/laravel-monnify.svg?style=flat-square)](https://packagist.org/packages/henryejemuta/laravel-monnify)
[![Build Status](https://img.shields.io/travis/henryejemuta/laravel-monnify/master.svg?style=flat-square)](https://travis-ci.org/henryejemuta/laravel-monnify)
[![Latest Stable Version](https://poser.pugx.org/henryejemuta/laravel-monnify/v/stable)](https://packagist.org/packages/henryejemuta/laravel-monnify)
[![Total Downloads](https://poser.pugx.org/henryejemuta/laravel-monnify/downloads)](https://packagist.org/packages/henryejemuta/laravel-monnify)
[![License](https://poser.pugx.org/henryejemuta/laravel-monnify/license)](https://packagist.org/packages/henryejemuta/laravel-monnify)
[![Quality Score](https://img.shields.io/scrutinizer/g/henryejemuta/laravel-monnify.svg?style=flat-square)](https://scrutinizer-ci.com/g/henryejemuta/laravel-monnify)
[![Total Downloads](https://img.shields.io/packagist/dt/henryejemuta/laravel-monnify.svg?style=flat-square)](https://packagist.org/packages/henryejemuta/laravel-monnify)

A laravel package to seamlessly integrate monnify api within your laravel application

Expand Down
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@
],
"minimum-stability": "dev",
"require": {
"php": ">=7.1",
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0",
"guzzlehttp/guzzle": "^6.3",
"php": "^7.2",
"laravel/framework": "^8.0 || ^7.0",
"guzzlehttp/guzzle": "^7.0.1",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "5.0",
"phpunit/phpunit": "^8.0.0"
"phpunit/phpunit": "8.*",
"mockery/mockery": "1.*",
"orchestra/testbench": "6.* || 5.*"
},
"autoload": {
"psr-4": {
Expand Down
9 changes: 9 additions & 0 deletions src/routes/web.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php
/**
* Created By: Henry Ejemuta
* PC: Enrico Systems
* Project: laravel-monnify
* Class Name: web.php
* Date Created: 9/11/20
* Time Created: 8:53 AM
*/

0 comments on commit 5078b60

Please sign in to comment.