File tree 4 files changed +27
-19
lines changed
4 files changed +27
-19
lines changed Original file line number Diff line number Diff line change 6
6
7
7
matrix :
8
8
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'
21
9
- php : 7.2
22
10
env : LARAVEL='6.*' TESTBENCH='4.*' COMPOSER_FLAGS='--prefer-lowest'
23
11
- php : 7.2
@@ -42,6 +30,14 @@ matrix:
42
30
env : LARAVEL='7.*' TESTBENCH='5.*' COMPOSER_FLAGS='--prefer-lowest'
43
31
- php : 7.4
44
32
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'
45
41
fast_finish : true
46
42
47
43
before_install :
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-paddle ` will be documented in this file
4
4
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
+
5
14
## 1.1.2 - 2020-06-01
6
15
7
16
- Added a 'GenericWebhook' event, for webhooks with an 'alert_name' key.
Original file line number Diff line number Diff line change 5
5
[ ![ Quality Score] ( https://img.shields.io/scrutinizer/g/protonemedia/laravel-paddle.svg?style=flat-square )] ( https://scrutinizer-ci.com/g/protonemedia/laravel-paddle )
6
6
[ ![ Total Downloads] ( https://img.shields.io/packagist/dt/protonemedia/laravel-paddle.svg?style=flat-square )] ( https://packagist.org/packages/protonemedia/laravel-paddle )
7
7
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!
9
9
10
10
## Features
11
11
* Super easy wrapper around the [ Paddle.com API] ( https://developer.paddle.com/api-reference/intro )
12
12
* Built-in support for Webhooks and Event handling
13
13
* 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 .
15
15
* PHP 7.2, 7.3 or 7.4 required.
16
16
17
17
## Installation
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " protonemedia/laravel-paddle" ,
3
- "description" : " Paddle.com integration" ,
3
+ "description" : " Paddle.com integration for Laravel " ,
4
4
"keywords" : [
5
5
" protonemedia" ,
6
- " laravel-paddle"
6
+ " laravel-paddle" ,
7
+ " paddle"
7
8
],
8
9
"homepage" : " https://github.com/protonemedia/laravel-paddle" ,
9
10
"license" : " MIT" ,
18
19
"require" : {
19
20
"php" : " ^7.2" ,
20
21
"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" ,
23
24
"egulias/email-validator" : " ^2.1.10" ,
24
25
"kitetail/zttp" : " ^0.6.0"
25
26
},
26
27
"require-dev" : {
27
- "orchestra/testbench" : " ^3.8 || ^4 .0 || ^5 .0"
28
+ "orchestra/testbench" : " ^4.0 || ^5 .0 || ^6 .0"
28
29
},
29
30
"autoload" : {
30
31
"psr-4" : {
43
44
"config" : {
44
45
"sort-packages" : true
45
46
},
47
+ "minimum-stability" : " dev" ,
48
+ "prefer-stable" : true ,
46
49
"extra" : {
47
50
"laravel" : {
48
51
"providers" : [
You can’t perform that action at this time.
0 commit comments