Skip to content

Commit

Permalink
⬆️ upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bnomei committed Dec 1, 2024
1 parent 873a1ef commit 9d17f13
Show file tree
Hide file tree
Showing 35 changed files with 971 additions and 1,413 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@
/ray.php export-ignore
/pint.json export-ignore
/tests export-ignore
/collections/example_*.php export-ignore
36 changes: 16 additions & 20 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bnomei/kirby-mongodb",
"type": "kirby-plugin",
"version": "1.4.4",
"version": "1.4.5",
"description": "Khulan is a cache driver and content cache with NoSQL interface for Kirby using MongoDB",
"license": "MIT",
"authors": [
Expand All @@ -23,10 +23,8 @@
"nosql",
"mongodb"
],
"autoload": {
"psr-4": {
"Bnomei\\": "classes/"
}
"conflict": {
"bnomei/kirby3-boost": "*"
},
"config": {
"optimize-autoloader": true,
Expand All @@ -36,8 +34,10 @@
"pestphp/pest-plugin": true
}
},
"conflict": {
"bnomei/kirby3-boost": "*"
"autoload": {
"psr-4": {
"Bnomei\\": "classes/"
}
},
"require": {
"php": ">=8.2.0",
Expand All @@ -46,23 +46,18 @@
"ext-mongodb": "*"
},
"require-dev": {
"getkirby/cli": "^1.5.0",
"getkirby/cms": "^4.3.0",
"larastan/larastan": "^2.9",
"getkirby/cms": "^5.0.0-alpha.4",
"larastan/larastan": "^v3.0.0",
"laravel/pint": "^1.13",
"pestphp/pest": "^2.24",
"pestphp/pest-plugin-type-coverage": "^2.4",
"spatie/ray": "^1.41"
"pestphp/pest": "^v3.5.1",
"spatie/ray": "^1.39"
},
"scripts": {
"analyze": "./vendor/bin/phpstan",
"stan": "./vendor/bin/phpstan",
"fix": "./vendor/bin/pint",
"test": "./vendor/bin/pest",
"coverage": [
"php tests/patch.php",
"./vendor/bin/pest --coverage"
],
"test": "./vendor/bin/pest --profile",
"dist": [
"composer fix",
"composer install --no-dev --optimize-autoloader",
"git rm -rf --cached .; git add .;"
],
Expand All @@ -71,7 +66,8 @@
"composer update",
"composer install --working-dir=tests/kirby --no-dev --optimize-autoloader",
"composer update --working-dir=tests/kirby",
"php tests/patch.php"
"sed -i.bak 's/function dump(/function xdump(/g' tests/kirby/config/helpers.php",
"sed -i.bak 's/function e(/function xe(/g' tests/kirby/config/helpers.php"
]
},
"extra": {
Expand Down
Loading

0 comments on commit 9d17f13

Please sign in to comment.