Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Fix compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Mosnar committed Mar 26, 2021
1 parent 21a27cf commit fb21af3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# OAuth Infusionsoft Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
## 1.0.1 - 2021-03-26
### Fixed
- Fix compatibility with oauthclient 2.1

## 1.0.0 - 2019-04-15
### Added
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "venveo/oauth-infusionsoft",
"description": "Infusionsoft provider for Venveo OAuth Client",
"type": "craft-plugin",
"version": "1.0.0",
"version": "1.0.1",
"keywords": [
"craft",
"cms",
Expand All @@ -22,7 +22,8 @@
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1",
"craftcms/cms": "^3.1.0",
"venveo/craft-oauthclient": "^2.0.0",
"adespresso/oauth2-infusionsoft": "^0.1.1"
},
"autoload": {
Expand Down
5 changes: 5 additions & 0 deletions src/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,9 @@ public function getAuthorizeURL($options = []): String {
$options)
);
}

public static function getProviderClass(): string
{
return InfusionsoftProvider::class;
}
}

0 comments on commit fb21af3

Please sign in to comment.