Skip to content

Commit 2af7d4d

Browse files
committed
Initial support for Craft 5
1 parent d85ae63 commit 2af7d4d

File tree

5 files changed

+1968
-1734
lines changed

5 files changed

+1968
-1734
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 3.0.0-beta.1 - 2023.03.24
8+
- Craft 5 version
9+
710
## 2.1.3 - 2023.05.03
811
### Added
912
- Support for Servd's Asset Platform v3.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Imgixer plugin for Craft CMS 4.x
1+
# Imgixer plugin for Craft CMS 5.x
22

33
Generate image transformation URLs that work with [Imgix](https://imgix.com), [Imagekit](https://imagekit.io) and [Servd](https://servd.host).
44

@@ -11,7 +11,7 @@ Generate image transformation URLs that work with [Imgix](https://imgix.com), [I
1111

1212
## Requirements
1313

14-
This plugin requires Craft CMS 4.0.0 or later.
14+
This plugin requires Craft CMS 5.0.0-beta.1 or later.
1515

1616
## Installation
1717

composer.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "croxton/imgixer",
33
"description": "Generate Imgix URLs.",
44
"type": "craft-plugin",
5-
"version": "2.1.3",
5+
"version": "3.0.0-beta.1",
66
"keywords": [
77
"craft",
88
"cms",
@@ -12,7 +12,7 @@
1212
"imgix"
1313
],
1414
"support": {
15-
"docs": "https://github.com/croxton/imgixer/blob/master/README.md",
15+
"docs": "https://github.com/croxton/imgixer/blob/develop-v5/README.md",
1616
"issues": "https://github.com/croxton/imgixer/issues",
1717
"source": "https://github.com/croxton/imgixer"
1818
},
@@ -24,7 +24,7 @@
2424
}
2525
],
2626
"require": {
27-
"craftcms/cms": "^4.0",
27+
"craftcms/cms": "^5.0.0-beta.1",
2828
"imgix/imgix-php": "~3.1.0",
2929
"imagekit/imagekit": "^3.0"
3030
},
@@ -46,5 +46,9 @@
4646
"yiisoft/yii2-composer": true,
4747
"craftcms/plugin-installer": true
4848
}
49+
},
50+
"require-dev": {
51+
"craftcms/rector": "dev-main",
52+
"craftcms/phpstan": "dev-main"
4953
}
5054
}

0 commit comments

Comments
 (0)