Skip to content

Commit

Permalink
Migrate to PHP 8.2
Browse files Browse the repository at this point in the history
Add Laravel 11.x support
  • Loading branch information
eliseekn committed Apr 21, 2024
1 parent 61fdd30 commit 933ff6b
Show file tree
Hide file tree
Showing 10 changed files with 537 additions and 541 deletions.
3 changes: 3 additions & 0 deletions .idea/codeception.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions .idea/laravel-metrics.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/phpspec.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to `laravel-metrics` will be documented in this file

## 3.0.0

- Migrate to PHP 8.2
- Add Laravel 11.x support

## 2.9.2

- Rebase branch 2.9.0-beta-1 onto 2.x
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

Generate easily metrics and trends data of your models for your dashboards.

## Requirements
```bash
PHP ^8.2.x
Laravel ^11.x
```

## Installation
```bash
composer require eliseekn/laravel-metrics
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"illuminate/database": "^10.20",
"illuminate/support": "^10.20",
"nesbot/carbon": "^2.69"
"php": "^8.2",
"illuminate/database": "^11.4",
"illuminate/support": "^11.4",
"nesbot/carbon": "^2.72.3"
},
"require-dev": {
"laravel/pint": "^1.13",
"phpunit/phpunit": "^9.6"
"laravel/pint": "^1.15.1",
"phpunit/phpunit": "^11.1.2"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 933ff6b

Please sign in to comment.