Skip to content

Commit

Permalink
Craft 5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Mosnar committed Sep 26, 2024
1 parent 8c8cf7e commit 338f9fc
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Bulk Edit Changelog

## 5.0.0-beta.1 - 2024-09-26

> [!IMPORTANT]
> Craft 5 had signficant chagnes to how fields and content work. Please use this beta with caution, make backups, and report any issues you encounter.
### Added

- Initial Craft 5 support.

## 4.0.1 - 2022-10-28

### Fixed
Expand Down
16 changes: 9 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"bulk edit"
],
"support": {
"docs": "https://github.com/venveo/craft-bulkedit/blob/master/README.md",
"docs": "https://github.com/venveo/craft-bulkedit/blob/main/README.md",
"issues": "https://github.com/venveo/craft-bulkedit/issues"
},
"license": "MIT",
Expand All @@ -21,8 +21,8 @@
}
],
"require": {
"craftcms/cms": "^5.0.0-beta.1",
"php": "^8.0.2"
"craftcms/cms": "^5.0",
"php": "^8.2"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
Expand All @@ -34,16 +34,18 @@
"venveo\\bulkedit\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan --ansi --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi"
},
"extra": {
"name": "Bulk Edit",
"handle": "venveo-bulk-edit",
"changelogUrl": "https://raw.githubusercontent.com/venveo/craft-bulkedit/master/CHANGELOG.md"
"changelogUrl": "https://raw.githubusercontent.com/venveo/craft-bulkedit/main/CHANGELOG.md"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
Expand Down
2 changes: 1 addition & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
includes:
- vendor/craftcms/phpstan/phpstan.neon
- %currentWorkingDirectory%/cms/vendor/craftcms/phpstan/phpstan.neon

parameters:
level: 0
Expand Down

0 comments on commit 338f9fc

Please sign in to comment.