https://github.com/laravel-admin-extensions/phpinfo
Outputs information about PHP's configuration in laravel-admin
https://github.com/laravel-admin-extensions/phpinfo
laravel laravel-admin phpinfo
Last synced: about 2 months ago
JSON representation
Outputs information about PHP's configuration in laravel-admin
- Host: GitHub
- URL: https://github.com/laravel-admin-extensions/phpinfo
- Owner: laravel-admin-extensions
- License: mit
- Created: 2018-09-06T06:13:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T10:01:50.000Z (over 6 years ago)
- Last Synced: 2025-04-13T00:34:34.239Z (2 months ago)
- Topics: laravel, laravel-admin, phpinfo
- Language: PHP
- Size: 7.81 KB
- Stars: 27
- Watchers: 1
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-laravel-admin - phpinfo - phpinfo 信息查看工具 (扩展包 / 工具类扩展包)
README
Outputs information about PHP's configuration
======The laravel-admin version of the `phpinfo()` function, Inspired by [nova-phpinfo](https://github.com/davidpiesse/nova-phpinfo)
## Screenshot

## Installation
```bash
composer require laravel-admin-ext/phpinfo
```If you want to add a link entry in the left menu, use the following command to import
```bash
php artisan admin:import phpinfo
```## Configuration
In the `extensions` section of the `config/admin.php` file, add configurations
```php'extensions' => [
'phpinfo' => [
// Set this to false if you want to disable this extension
'enable' => true,
// What information to show,see http://php.net/manual/en/function.phpinfo.php#refsect1-function.phpinfo-parameters
'what' => INFO_ALL,
// Set access path,defaults to `phpinfo`
//'path' => '~phpinfo',
]
]```
## Usage
Open `http://localhost/admin/phpinfo` in your broswer after install
## Donate
> Help keeping the project development going, by donating a little. Thanks in advance.
[](https://www.paypal.me/zousong)

License
------------
Licensed under [The MIT License (MIT)](LICENSE).