Skip to content

Commit

Permalink
#39 add support for Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
khalyomede committed May 3, 2024
1 parent 1e3b8ff commit fc3a191
Show file tree
Hide file tree
Showing 5 changed files with 1,968 additions and 1,956 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
19 changes: 9 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit fc3a191

Please sign in to comment.