Skip to content

Commit

Permalink
breaking: kirby 4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricerenck committed Dec 1, 2023
1 parent 91860f7 commit 732615b
Show file tree
Hide file tree
Showing 338 changed files with 9,381 additions and 2,536 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@
/kirby
/.sqlite
/site/config/config.pexels.test.php
/site/cache
4 changes: 2 additions & 2 deletions components/fields.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
return [
'pexels' => [
'props' => [
'apiKey' => function () {
return option('mauricerenck.PexelsImageField.apiKey', '');
'downloadSize' => function () {
return option('mauricerenck.PexelsImageField.downloadSize', 'large');
},
]
]
Expand Down
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
},
"require": {
"getkirby/composer-installer": "^1.1",
"php": ">=7.3.0",
"php": ">=8.2.0",
"webeweb/pexels-library": "^2.9"
},
"require-dev": {
"getkirby/cms": "^3.8",
"getkirby/cms": "^4",
"phpunit/phpunit": "9.5"
},
"replace": {},
Expand All @@ -38,6 +38,10 @@
"scripts": {
"test": "vendor/bin/phpunit --testdox tests",
"build-test-package": "git archive HEAD -o plugin.zip --worktree-attributes",
"build-composer": "composer install --no-dev --optimize-autoloader"
"build-composer": "composer install --no-dev --optimize-autoloader",
"build-release": [
"composer install --no-dev --optimize-autoloader",
"npm run build"
]
}
}
}
Loading

0 comments on commit 732615b

Please sign in to comment.