Skip to content

Commit

Permalink
2.0.0 (#10)
Browse files Browse the repository at this point in the history
* Update packages and run Pint

* Update code for PHP 8/Craft 4 compatibility

* Apply formatting changes

---------

Co-authored-by: aaronbushnell <aaronbushnell@users.noreply.github.com>
  • Loading branch information
aaronbushnell and aaronbushnell authored Jun 22, 2023
1 parent 2720d61 commit bb12749
Show file tree
Hide file tree
Showing 11 changed files with 1,844 additions and 1,195 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release Notes for Reporter

## 2.0.0 - 2023-06-22

### Added
- Craft 4 support (Thanks, [@darinlarimore](https://github.com/darinlarimore)!)

## 1.4.0 - 2023-05-18

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ return [
// An optional folder path if you would like to nest the reports in a specific directory
'folder' => 'resources/reports',

// An optional batch size to use when processing reports (defaults to 100)
'batchSize' => 100,
// An optional batch size to use when processing reports (defaults to 100)
'batchSize' => 100,

// An array of reports to produce
'reports' => [
Expand Down
12 changes: 7 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "trendyminds/craft-reporter",
"description": "Export Craft data as CSVs in a snap",
"type": "craft-plugin",
"version": "1.4.0",
"version": "2.0.0",
"keywords": ["reports", "craft", "craft cms"],
"license": "MIT",
"authors": [
Expand All @@ -17,10 +17,9 @@
"docs": "https://github.com/trendyminds/craft-reporter/blob/master/README.md"
},
"require": {
"php": ">=7.3",
"craftcms/cms": "^3.5.0",
"illuminate/collections": "^8.83",
"league/fractal": "^0.18.0"
"php": ">=8.0.2",
"craftcms/cms": "^4.0.0",
"league/fractal": "^0.20.1"
},
"autoload": {
"psr-4": {
Expand All @@ -38,5 +37,8 @@
"yiisoft/yii2-composer": false,
"craftcms/plugin-installer": false
}
},
"require-dev": {
"laravel/pint": "^1.10"
}
}
Loading

0 comments on commit bb12749

Please sign in to comment.