Skip to content

Commit

Permalink
Support Kirby 3.6+
Browse files Browse the repository at this point in the history
  • Loading branch information
chregu committed May 2, 2022
1 parent e4834b2 commit a1cafae
Show file tree
Hide file tree
Showing 7 changed files with 1,132 additions and 140 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/vendor
/kirby
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.0 - 2022-04-02

- Support Kirby 3.6+ (but not older versions anymore, but you can still use 0.3.0 for that)

## 0.3.0 - 2022-01-26

- Use .gif as format, if source image is a gif.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ And input is always welcome.
## Requirements

- [PHP 7.1](https://php.net)
- [**Kirby**](https://getkirby.com/) 3.0+
- [**Kirby**](https://getkirby.com/) 3.6+
- [Rokka API key](https://rokka.io/en/signup/) (free plan available).
- [Rokka PHP Client](https://github.com/rokka-io/rokka-client-php) 1.1+. Installed via composer, see below.

Expand All @@ -27,7 +27,7 @@ And input is always welcome.
The recommended way

```
composer require rokka/kirby:"dev-master as 0.1.0-dev"
composer require rokka/kirby
```


Expand Down
8 changes: 6 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
}
],
"require": {
"rokka/client": "^1.14.0"
"rokka/client": "^1.14.0",
"getkirby/cms": "^3.6"
},
"autoload": {
"psr-4": {
Expand All @@ -21,7 +22,10 @@
"files": ["config.php"]
},
"config": {
"optimize-autoloader": true
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"installer-name": "rokka"
Expand Down
Loading

0 comments on commit a1cafae

Please sign in to comment.