Skip to content

Commit

Permalink
chore: upgrade laravel to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Apr 5, 2023
1 parent 246c8cb commit 9423cb3
Show file tree
Hide file tree
Showing 4 changed files with 1,384 additions and 1,529 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

## Next Release

- Upgrades from Laravel 9 to 10
- Fixes admin page category table pagination
- Fixes post comment avatar paths
- Bumps all dependencies

## v0.13.0 (2023-02-19)

Expand Down
31 changes: 17 additions & 14 deletions src/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,32 @@
],
"license": "MIT",
"require": {
"php": "8.1.*",
"anhskohbo/no-captcha": "^3.4",
"doctrine/dbal": "^3.3",
"php": "^8.1",
"anhskohbo/no-captcha": "^3.5",
"doctrine/dbal": "^3.6",
"erusev/parsedown": "^1.7",
"intervention/image": "^2.7",
"laravel/framework": "^9.0",
"laravel/tinker": "^2.7",
"laravel/ui": "^3.4",
"sentry/sentry-laravel": "^2.11",
"spatie/laravel-ignition": "^1.0"
"laravel/framework": "^10.0",
"laravel/tinker": "^2.8",
"laravel/ui": "^4.2",
"sentry/sentry-laravel": "^3.3",
"spatie/laravel-ignition": "^2.0"
},
"require-dev": {
"fzaninotto/faker": "^1.9",
"fakerphp/faker": "^1.21",
"mockery/mockery": "^1.5",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.6"
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"bin-dir": "bin"
"bin-dir": "bin",
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
Expand All @@ -48,7 +51,7 @@
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"coverage": "XDEBUG_MODE=coverage ./bin/phpunit --coverage-html clover.html --coverage-clover clover.xml",
Expand Down
Loading

0 comments on commit 9423cb3

Please sign in to comment.