Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs: # Docs: <https://git.io/JvxXE>
matrix:
setup: ['basic', 'lowest']
illuminate: [default]
php: ['8.1','8.2','8.3','8.4']
php: ['8.2', '8.3', '8.4', '8.5']
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 # Action page: <https://github.com/shivammathur/setup-php>
Expand All @@ -37,7 +37,7 @@ jobs: # Docs: <https://git.io/JvxXE>
run: echo "output_dir=dir::$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache dependencies # Docs: <https://git.io/JfAKn#php---composer>
uses: actions/cache@v3
uses: actions/cache@v6
with:
path: ${{ steps.composer-cache.outputs.output_dir }}
key: ${{ runner.os }}-composer-${{ matrix.setup }}-${{ hashFiles('**/composer.json') }}
Expand All @@ -61,7 +61,7 @@ jobs: # Docs: <https://git.io/JvxXE>
- name: Execute tests
run: composer test-cover

- uses: codecov/codecov-action@v3 # Docs: <https://github.com/codecov/codecov-action>
- uses: codecov/codecov-action@v7 # Docs: <https://github.com/codecov/codecov-action>
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/clover.xml
Expand All @@ -72,7 +72,7 @@ jobs: # Docs: <https://git.io/JvxXE>
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Lint changelog file
uses: docker://avtodev/markdown-lint:v1 # Action page: <https://github.com/avto-dev/markdown-lint>
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver].

## Unreleased

### Added

- Laravel `13.x` support

### Changed

- Minimal Laravel version now is `^11.0`
- Minimal `php` version is `8.2`
- Version of `composer` in docker container updated up to `2.10.0`
- Version of `php` in docker container updated up to `8.5`
- Update dev dependencies

## v1.13.0

### Changed
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM php:8.4-alpine
FROM php:8.5-alpine

ENV \
COMPOSER_ALLOW_SUPERUSER="1" \
COMPOSER_HOME="/tmp/composer"

COPY --from=composer:2.9 /usr/bin/composer /usr/bin/composer
COPY --from=composer:2.10.0 /usr/bin/composer /usr/bin/composer

RUN set -x \
&& apk add --no-cache binutils git \
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-json": "*",
"ext-mbstring": "*",
"avtocod/specs": "~5.0",
"illuminate/support": "~9.0 || ~10.0 || ~11.0 || ~12.0"
"illuminate/support": "~11.0 || ~12.0 || ~13.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.0",
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^1.12"
},
"autoload": {
Expand Down