Skip to content

Commit

Permalink
#39 add support for Laravel 11 (#40)
Browse files Browse the repository at this point in the history
* #39 break drop support for PHP 8.2

* #39 fix remove unused PHP 8.2 test
  • Loading branch information
khalyomede authored May 3, 2024
1 parent 1e3b8ff commit 2b6d629
Show file tree
Hide file tree
Showing 8 changed files with 2,433 additions and 2,467 deletions.
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

0 comments on commit 2b6d629

Please sign in to comment.