Skip to content

Commit

Permalink
3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronbushnell committed Feb 11, 2022
1 parent 8a75f7d commit f29dd39
Show file tree
Hide file tree
Showing 3 changed files with 981 additions and 776 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release Notes for Algolia

## 3.1.0 - 2022-02-11

### Changed
* Algolia PHP SDK updated to 3.2
* PHP 7.3+ required
* Craft 3.5+ required
* Swapped tightenco/collect with illuminate/collections

## 3.0.1 - 2021-06-29

### Fixed
Expand Down
16 changes: 11 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "trendyminds/algolia",
"description": "Easily pull search results from Algolia into your Craft CMS website",
"type": "craft-plugin",
"version": "3.0.1",
"version": "3.1.0",
"keywords": [
"craft",
"cms",
Expand All @@ -22,10 +22,10 @@
}
],
"require": {
"php": ">=7.1",
"craftcms/cms": "^3.1.19",
"algolia/algoliasearch-client-php": "^3.0",
"tightenco/collect": "^5.8|^6.0|^7.0"
"php": ">=7.3",
"craftcms/cms": "^3.5.0",
"illuminate/collections": "^8.83",
"algolia/algoliasearch-client-php": "^3.2"
},
"autoload": {
"psr-4": {
Expand All @@ -42,5 +42,11 @@
"algoliaService": "trendyminds\\algolia\\services\\AlgoliaService"
},
"class": "trendyminds\\algolia\\Algolia"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}
Loading

0 comments on commit f29dd39

Please sign in to comment.