diff --git a/CHANGELOG.md b/CHANGELOG.md index a7589dc..02af202 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Route Map Changelog +## 4.0.0-beta.1 - 2022.03.14 + +### Added + +* Initial Craft CMS 4 compatibility + ## 1.1.7 - 2021.07.17 ### Changed * Switched documentation system to VitePress diff --git a/composer.json b/composer.json index 6651c12..95df4ac 100644 --- a/composer.json +++ b/composer.json @@ -1,54 +1,42 @@ { - "name": "nystudio107/craft-routemap", - "description": "Returns a list of Craft/Vue/React route rules and element URLs for ServiceWorkers from Craft entries", - "type": "craft-plugin", - "version": "1.1.7", - "keywords": [ - "craft", - "cms", - "craftcms", - "craft-plugin", - "vue", - "react", - "routes", - "serviceworker", - "route map" - ], - "support": { - "docs": "https://nystudio107.com/plugins/routemap/documentation", - "issues": "https://nystudio107.com/plugins/routemap/support" - }, - "license": "MIT", - "authors": [ - { - "name": "nystudio107", - "homepage": "https://nystudio107.com/" - } - ], - "require": { - "craftcms/cms": "^3.0.0" - }, - "repositories": [ - { - "type": "composer", - "url": "https://asset-packagist.org" - } - ], - "autoload": { - "psr-4": { - "nystudio107\\routemap\\": "src/" - } - }, - "extra": { - "name": "Route Map", - "handle": "route-map", - "schemaVersion": "1.0.0", - "hasCpSettings": false, - "hasCpSection": false, - "changelogUrl": "https://raw.githubusercontent.com/nystudio107/craft-routemap/v1/CHANGELOG.md", - "components": { - "routes": "nystudio107\\routemap\\services\\Routes" - }, - "class": "nystudio107\\routemap\\RouteMap" + "name": "nystudio107/craft-routemap", + "description": "Returns a list of Craft/Vue/React route rules and element URLs for ServiceWorkers from Craft entries", + "type": "craft-plugin", + "version": "4.0.0-beta.1", + "keywords": [ + "craft", + "cms", + "craftcms", + "craft-plugin", + "vue", + "react", + "routes", + "serviceworker", + "route map" + ], + "support": { + "docs": "https://nystudio107.com/docs/route-map/", + "issues": "https://nystudio107.com/plugins/routemap/support", + "source": "https://github.com/nystudio107/craft-routemap" + }, + "license": "MIT", + "authors": [ + { + "name": "nystudio107", + "homepage": "https://nystudio107.com/" } + ], + "require": { + "craftcms/cms": "^4.0.0-beta.1" + }, + "autoload": { + "psr-4": { + "nystudio107\\routemap\\": "src/" + } + }, + "extra": { + "class": "nystudio107\\routemap\\RouteMap", + "handle": "route-map", + "name": "Route Map" + } }