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

Update Composer stable #3

Merged
merged 9 commits into from
Sep 9, 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
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest]
php: [8.3, 8.2]
laravel: [11.*, 10.*]
stability: [prefer-lowest, prefer-stable]
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# New Relic Log API for Laravel

[![Latest Version on Packagist](https://img.shields.io/packagist/v/nagi/laravel-newrelic-log-api.svg?style=flat-square)](https://packagist.org/packages/nagi/laravel-newrelic-log-api)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/nagi/laravel-newrelic-log-api/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/nagi/laravel-newrelic-log-api/actions?query=workflow%3Arun-tests+branch%3Amain)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/nagi/laravel-newrelic-log-api/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/nagi/laravel-newrelic-log-api/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/nagi1/laravel-newrelic-log-api/run-tests.yml?branch=dev&label=tests&style=flat-square)](https://github.com/nagi1/laravel-newrelic-log-api/actions?query=workflow%3Arun-tests+branch%3Adev)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/nagi1/laravel-newrelic-log-api/fix-php-code-style-issues.yml?branch=dev&label=code%20style&style=flat-square)](https://github.com/nagi1/laravel-newrelic-log-api/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Adev)
[![Total Downloads](https://img.shields.io/packagist/dt/nagi/laravel-newrelic-log-api.svg?style=flat-square)](https://packagist.org/packages/nagi/laravel-newrelic-log-api)

Integrate New Relic Log API with Laravel your laravel application.
It mainly utilizing queuse behind the scene to send the logs to New Relic API.
so make sure you have queue worker running.

```php
// in loggin.php
Expand Down Expand Up @@ -97,6 +99,8 @@ return [

```

**🚨 Make sure that you have queue worker configured.**

## Usage

### Get your newrelic License/API
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@
]
}
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"prefer-stable": true
}