Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

39-add-support-for-laravel-11 #40

Merged
merged 3 commits into from
May 3, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
#39 add support for Laravel 11
  • Loading branch information
khalyomede committed May 3, 2024
commit fc3a1918c31b643dc7e75cf2303ab119a1be0e84
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Support for Laravel 11 ([#30](https://github.com/khalyomede/laravel-eloquent-uuid-slug/issues/39)).

## [0.10.0] - 2023-11-27

### Added
19 changes: 9 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
@@ -32,27 +32,26 @@
],
"minimum-stability": "stable",
"require-dev": {
"nunomaduro/collision": "7.10.0",
"friendsofphp/php-cs-fixer": "3.40.0",
"nunomaduro/larastan": "2.6.4",
"doctrine/dbal": "3.7.2",
"rector/rector": "0.18.11",
"orchestra/testbench": "8.15.0",
"phpunit/phpunit": "10.4.2"
"friendsofphp/php-cs-fixer": "3.54.0",
"rector/rector": "1.0.4",
"larastan/larastan": "2.9.5",
"nunomaduro/collision": "8.1.1",
"phpunit/phpunit": "10.5.20",
"orchestra/testbench": "9.0.4"
},
"scripts": {
"test": "testbench package:test",
"analyse": "phpstan analyse",
"lint": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --diff --using-cache=no --allow-risky=yes --dry-run",
"format": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer --using-cache=no --allow-risky=yes fix",
"check": "composer audit --locked --no-dev",
"updates": "composer outdated --strict --direct",
"updates": "composer outdated --strict --direct --ignore phpunit/phpunit",
"scan": "rector process --dry-run",
"modernize": "rector process",
"all": "composer run test && composer run analyse && composer run lint && composer run check && composer run scan && composer run updates"
},
"require": {
"laravel/framework": "10.*",
"php": ">=8.2.0"
"php": ">=8.2.0",
"laravel/framework": "11.*"
}
}
Loading
Loading