Skip to content

Commit

Permalink
update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsn committed Apr 22, 2024
1 parent d998a86 commit 051cf47
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: PHP Tests

on:
push:
branches:
branches:
- develop
pull_request:
branches:
Expand All @@ -27,7 +27,7 @@ jobs:

strategy:
matrix:
php-versions: ['8.1']
php-versions: ['8.1', '8.2', '8.3']

steps:
- name: Checkout
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This package make it easy to work with UUIDs in Codeigniter 4. It provide four c

## Installation via composer

> composer require michalsn/codeigniter4-uuid
composer require michalsn/codeigniter4-uuid

## Manual installation

Expand All @@ -22,6 +22,13 @@ $psr4 = [
];
```

## Versions

| CodeIgniter version | This package version |
|---------------------|----------------------|
| `>= 4.5` | `>= 1.1` |
| `< 4.5` | `< 1.1` |

## How to use it

In general, using `UuidModel` and `UuidEntity` is no much different than using the original classes provided with CodeIgniter 4 framework. We just have some additional config options. There is a good chance that you will not need to use `Uuid` class at all, because most of the things that happens are already automated.
Expand Down Expand Up @@ -210,4 +217,4 @@ For now this class doesn't support SQLite3 database when you want to strore UUID

## License

The MIT License (MIT). Please see [License File](LICENSE) for more information.
The MIT License (MIT). Please see [License File](LICENSE) for more information.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
}
],
"require": {
"php" : ">=7.3",
"ramsey/uuid": "^4.0"
"php": ">=8.1",
"ramsey/uuid": "^4.7"
},
"minimum-stability": "dev",
"require-dev": {
Expand Down

0 comments on commit 051cf47

Please sign in to comment.