Skip to content

Commit 03b8122

Browse files
committed
Docs
1 parent 178101e commit 03b8122

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

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+
## 2.0.0 - 2020-10-05
6+
7+
- Added support for Laravel 8.0
8+
- Dropped support for Laravel 7.0 and lower
9+
10+
## 1.2.1 - 2020-10-05
11+
12+
- Dropped support for Laravel 8.0, please upgrade to 2.0.
13+
514
## 1.2.0 - 2020-09-04
615

716
- Added support for Laravel 8.0

README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,22 @@
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 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!
8+
This package provides an integration with [Paddle.com](https://paddle.com) for Laravel. 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 6.0 and higher.
15-
* PHP 7.2, 7.3 or 7.4 required.
1614

1715
## Installation
1816

17+
Only the master branch and version 2.0 of this package are compatible with Laravel 8.0. If you're still using an older version of Laravel (or PHP < 7.3), please use the chart below to find out which version you should use. Mind that older versions are no longer supported.
18+
19+
| Laravel Version | Package Version |
20+
|-----------------|-----------------|
21+
| 8.0 | 2.0 |
22+
| 6.0-7.0 | 1.0 |
23+
1924
You can install the package via composer:
2025

2126
```bash

src/Paddle.php

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
use Illuminate\Support\Facades\Facade;
66

77
/**
8+
* @method static \ProtoneMedia\LaravelPaddle\Api\Alert alert()
9+
* @method static \ProtoneMedia\LaravelPaddle\Api\Checkout checkout()
10+
* @method static \ProtoneMedia\LaravelPaddle\Api\Product product()
11+
* @method static \ProtoneMedia\LaravelPaddle\Api\Subscription subscription()
12+
*
813
* @see \ProtoneMedia\LaravelPaddle\Api\Api
914
*/
1015
class Paddle extends Facade

0 commit comments

Comments
 (0)