Skip to content

Commit b647e7e

Browse files
committed
Docs
1 parent d7a0d3b commit b647e7e

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

.travis.yml

-8
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@ matrix:
3030
env: LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-lowest'
3131
- php: 7.4
3232
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'
4133
fast_finish: true
4234

4335
before_install:

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

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
"require": {
2020
"php": "^7.2",
2121
"ext-openssl": "*",
22-
"illuminate/support": "^6.0 || ^7.0 || ^8.0",
23-
"illuminate/validation": "^6.0 || ^7.0 || ^8.0",
22+
"illuminate/support": "^6.0 || ^7.0",
23+
"illuminate/validation": "^6.0 || ^7.0",
2424
"egulias/email-validator": "^2.1.10",
2525
"kitetail/zttp": "^0.6.0"
2626
},
2727
"require-dev": {
28-
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0"
28+
"orchestra/testbench": "^4.0 || ^5.0"
2929
},
3030
"autoload": {
3131
"psr-4": {

0 commit comments

Comments
 (0)