Skip to content
forked from never615/phpinfo

Outputs information about PHP's configuration in laravel-admin

License

Notifications You must be signed in to change notification settings

fotobank/phpinfo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Outputs information about PHP's configuration

The laravel-admin version of the phpinfo() function, Inspired by nova-phpinfo

Screenshot

wx20180906-141140

Installation

composer require fotobank/phpinfo

If you want to add a link entry in the left menu, use the following command to import

php artisan admin:import phpinfo

Configuration

In the extensions section of the config/admin.php file, add configurations

    '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.

PayPal Me

-1

License

Licensed under The MIT License (MIT).

About

Outputs information about PHP's configuration in laravel-admin

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 52.3%
  • HTML 47.7%