PHPackages                             jeelcodes/laravel-system-info - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. jeelcodes/laravel-system-info

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

jeelcodes/laravel-system-info
=============================

Laravel package to display composer and environment details

1.0.0(today)00MITBladePHP ^7.2.5|^8.0CI passing

Since Jun 18Pushed todayCompare

[ Source](https://github.com/jeelcodes/laravel-system-info)[ Packagist](https://packagist.org/packages/jeelcodes/laravel-system-info)[ Docs](https://github.com/jeelcodes/laravel-system-info)[ RSS](/packages/jeelcodes-laravel-system-info/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

Laravel System Info
===================

[](#laravel-system-info)

[![Latest Version on Packagist](https://camo.githubusercontent.com/3042167675e59c0610addeb9fce5659e4316c6c996c682591fc662ae152791d5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a65656c636f6465732f6c61726176656c2d73797374656d2d696e666f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jeelcodes/laravel-system-info)[![Total Downloads](https://camo.githubusercontent.com/18122c0ab4bddb52a1074584e6f9c802d14c73843f4968f458a9ad3d115007d2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a65656c636f6465732f6c61726176656c2d73797374656d2d696e666f2e7376673f7374796c653d666c61742d7371756172652663616368653d636c656172)](https://packagist.org/packages/jeelcodes/laravel-system-info)[![Run tests](https://github.com/jeelcodes/laravel-system-info/actions/workflows/run-tests.yml/badge.svg)](https://github.com/jeelcodes/laravel-system-info/actions/workflows/run-tests.yml)

A powerful and easy-to-use Laravel package to display your application's environment details, and composer package dependencies through a clean user interface.

Features
--------

[](#features)

- **System Environment Overview:** Quickly view PHP version, Laravel version, server software, OS, and database connection details.
- **Composer Packages:** See a complete list of installed composer packages along with their versions.
- **Customizable Routes:** Change the default URL path to whatever fits your application.
- **Zero Dependencies:** Built with native Laravel features, keeping your project lightweight.

Requirements
------------

[](#requirements)

- PHP 7.2.5 or higher (Fully compatible with PHP 8.x)
- Laravel 6.0 through 11.0+

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require jeelcodes/laravel-system-info
```

The package will automatically register its service provider in modern Laravel applications.

Usage
-----

[](#usage)

Once installed, simply navigate to the following URL in your browser:

```
http://your-app-domain.test/system-info

```

Here you will see a beautifully formatted dashboard containing all your system information.

Configuration
-------------

[](#configuration)

If you want to change the default route prefix (`/system-info`), you can publish the configuration file.

Run the following artisan command:

```
php artisan vendor:publish --tag="system-info-config"
```

This will create a `config/system-info.php` file in your application's config directory:

```
