Skip to content

Commit c5d6868

Browse files
authored
Merge pull request #14 from protonemedia/laravel-8.0
Laravel 8.0
2 parents 7430518 + 83606f9 commit c5d6868

File tree

4 files changed

+27
-19
lines changed

4 files changed

+27
-19
lines changed

.travis.yml

+8-12
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,6 @@ cache:
66

77
matrix:
88
include:
9-
- php: 7.2
10-
env: LARAVEL='5.8.*' TESTBENCH='3.8.*' COMPOSER_FLAGS='--prefer-lowest'
11-
- php: 7.2
12-
env: LARAVEL='5.8.*' TESTBENCH='3.8.*' COMPOSER_FLAGS='--prefer-stable'
13-
- php: 7.3
14-
env: LARAVEL='5.8.*' TESTBENCH='3.8.*' COMPOSER_FLAGS='--prefer-lowest'
15-
- php: 7.3
16-
env: LARAVEL='5.8.*' TESTBENCH='3.8.*' COMPOSER_FLAGS='--prefer-stable'
17-
- php: 7.4
18-
env: LARAVEL='5.8.*' TESTBENCH='3.8.*' COMPOSER_FLAGS='--prefer-lowest'
19-
- php: 7.4
20-
env: LARAVEL='5.8.*' TESTBENCH='3.8.*' COMPOSER_FLAGS='--prefer-stable'
219
- php: 7.2
2210
env: LARAVEL='6.*' TESTBENCH='4.*' COMPOSER_FLAGS='--prefer-lowest'
2311
- php: 7.2
@@ -42,6 +30,14 @@ matrix:
4230
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-lowest'
4331
- php: 7.4
4432
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-stable'
33+
- php: 7.3
34+
env: LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-lowest'
35+
- php: 7.3
36+
env: LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-stable'
37+
- php: 7.4
38+
env: LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-lowest'
39+
- php: 7.4
40+
env: LARAVEL='8.*' TESTBENCH='6.*' COMPOSER_FLAGS='--prefer-stable'
4541
fast_finish: true
4642

4743
before_install:

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to `laravel-paddle` will be documented in this file
44

5+
## 1.2.0 - 2020-09-04
6+
7+
- Added support for Laravel 8.0
8+
- Dropped support for Laravel 5.8
9+
10+
## 1.1.3 - 2020-06-16
11+
12+
- Updated host for checkouts request
13+
514
## 1.1.2 - 2020-06-01
615

716
- Added a 'GenericWebhook' event, for webhooks with an 'alert_name' key.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
[![Quality Score](https://img.shields.io/scrutinizer/g/protonemedia/laravel-paddle.svg?style=flat-square)](https://scrutinizer-ci.com/g/protonemedia/laravel-paddle)
66
[![Total Downloads](https://img.shields.io/packagist/dt/protonemedia/laravel-paddle.svg?style=flat-square)](https://packagist.org/packages/protonemedia/laravel-paddle)
77

8-
This package provides an integration with [Paddle.com](https://paddle.com) for Laravel 5.8 and higher. Read the [blogpost](https://protone.media/en/blog/a-new-laravel-package-to-handle-payments-and-subscriptions-with-paddle) about the introduction of the package!
8+
This package provides an integration with [Paddle.com](https://paddle.com) for Laravel 6.0 and higher. Read the [blogpost](https://protone.media/en/blog/a-new-laravel-package-to-handle-payments-and-subscriptions-with-paddle) about the introduction of the package!
99

1010
## Features
1111
* Super easy wrapper around the [Paddle.com API](https://developer.paddle.com/api-reference/intro)
1212
* Built-in support for Webhooks and Event handling
1313
* Blade directive to use [Paddle.js](https://paddle.com/docs/paddle-js-overlay-checkout/) in your front-end
14-
* Compatible with Laravel 5.8, 6.0 and 7.0.
14+
* Compatible with Laravel 6.0 and higher.
1515
* PHP 7.2, 7.3 or 7.4 required.
1616

1717
## Installation

composer.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
22
"name": "protonemedia/laravel-paddle",
3-
"description": "Paddle.com integration",
3+
"description": "Paddle.com integration for Laravel",
44
"keywords": [
55
"protonemedia",
6-
"laravel-paddle"
6+
"laravel-paddle",
7+
"paddle"
78
],
89
"homepage": "https://github.com/protonemedia/laravel-paddle",
910
"license": "MIT",
@@ -18,13 +19,13 @@
1819
"require": {
1920
"php": "^7.2",
2021
"ext-openssl": "*",
21-
"illuminate/support": "5.8.* || ^6.0 || ^7.0",
22-
"illuminate/validation": "5.8.* || ^6.0 || ^7.0",
22+
"illuminate/support": "^6.0 || ^7.0 || ^8.0",
23+
"illuminate/validation": "^6.0 || ^7.0 || ^8.0",
2324
"egulias/email-validator": "^2.1.10",
2425
"kitetail/zttp": "^0.6.0"
2526
},
2627
"require-dev": {
27-
"orchestra/testbench": "^3.8 || ^4.0 || ^5.0"
28+
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0"
2829
},
2930
"autoload": {
3031
"psr-4": {
@@ -43,6 +44,8 @@
4344
"config": {
4445
"sort-packages": true
4546
},
47+
"minimum-stability": "dev",
48+
"prefer-stable": true,
4649
"extra": {
4750
"laravel": {
4851
"providers": [

0 commit comments

Comments
 (0)