diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e23c83..8c85551 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/composer.json b/composer.json index 90c4ef2..9e6100e 100644 --- a/composer.json +++ b/composer.json @@ -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", @@ -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", @@ -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 diff --git a/phpstan.neon b/phpstan.neon index a9a75fe..1b3827e 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -1,5 +1,5 @@ includes: - - vendor/craftcms/phpstan/phpstan.neon + - %currentWorkingDirectory%/cms/vendor/craftcms/phpstan/phpstan.neon parameters: level: 0