Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laravel-admin-extensions/composer-viewer
Composer Viewer for Laravel-admin
https://github.com/laravel-admin-extensions/composer-viewer
Last synced: 6 days ago
JSON representation
Composer Viewer for Laravel-admin
- Host: GitHub
- URL: https://github.com/laravel-admin-extensions/composer-viewer
- Owner: laravel-admin-extensions
- License: mit
- Created: 2018-10-10T06:53:29.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-12-06T08:18:07.000Z (almost 3 years ago)
- Last Synced: 2024-10-08T10:56:42.460Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 27
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-laravel-admin - composer-viewer - Composer 包查看工具 (扩展包 / 工具类扩展包)
README
# Composer Viewer for Laravel-admin
A web interface of composer packages in laravel.
## Screenshot
![screenshot](https://user-images.githubusercontent.com/2421068/46718077-a7fadc00-cc9c-11e8-9219-c8a2bac1219e.png)
## Installation
> Before you install, make sure PHP exec() function is enabled in your php.ini config file.
```bash
composer require jxlwqq/composer-viewer
# If you want to add a link entry in the left menu, use the following command to import
php artisan admin:import composer-viewer
```## Configuration
In the extensions section of the config/admin.php file, add configurations
```php
'extensions' => [
'composer-viewer' => [
// Set this to false if you want to disable this extension
'enable' => true,
// Set the location of composer command
'which-composer' => '/usr/local/bin/composer', // !! it's important !!
]
]
```## Usage
Open http://your-host/admin/composer-viewerAnd you can find these installed packages.
## More resources
[Awesome Laravel-admin](https://github.com/jxlwqq/awesome-laravel-admin)
## License
Licensed under [The MIT License (MIT)](LICENSE).