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
Show file tree
Hide file tree
Changes from all commits
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
31 changes: 0 additions & 31 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,34 +46,3 @@ jobs:

- name: Package version check
run: docker-compose run --rm composer run updates

test_82:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Runs a single command using the runners shell
- name: Install
run: docker-compose run --rm composer82 install

- name: Test (PHP latest)
run: docker-compose run --rm composer82 run test

- name: Static analysis
run: docker-compose run --rm composer82 run analyse

- name: Formatting
run: docker-compose run --rm composer82 run lint

- name: Modern code check
run: docker-compose run --rm composer82 run scan

- name: Package security
run: docker-compose run --rm composer82 run check

- name: Package version check
run: docker-compose run --rm composer82 run updates
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ 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)).

## Breaking

- Drop support for PHP 8.2 ([#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,13 +32,12 @@
],
"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": "11.1.3",
"orchestra/testbench": "9.0.4"
},
"scripts": {
"test": "testbench package:test",
Expand All @@ -52,7 +51,7 @@
"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