an small plugin to show phpinfo right in your open-admin enviourment.

Installs: 1 502

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 2

Open Issues: 0

pkg:composer/open-admin-ext/phpinfo

v1.0 2022-02-09 21:43 UTC

This package is auto-updated.

Last update: 2025-10-05 19:34:57 UTC


README

Installation

composer require open-admin-ext/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

License

Licensed under The MIT License (MIT).