Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emtiazzahid/laravel-composer
Laravel Composer for Laravel 5, 6. **Install with composer, create a route to `LaravelComoserController`**. Manage your packages with few steps
https://github.com/emtiazzahid/laravel-composer
composer laravel laravel-composer laravel-package-manager laravel6 package-manager
Last synced: about 1 month ago
JSON representation
Laravel Composer for Laravel 5, 6. **Install with composer, create a route to `LaravelComoserController`**. Manage your packages with few steps
- Host: GitHub
- URL: https://github.com/emtiazzahid/laravel-composer
- Owner: emtiazzahid
- License: mit
- Created: 2020-02-06T11:19:23.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T19:28:43.000Z (over 1 year ago)
- Last Synced: 2024-09-28T19:23:11.351Z (about 2 months ago)
- Topics: composer, laravel, laravel-composer, laravel-package-manager, laravel6, package-manager
- Language: HTML
- Homepage:
- Size: 35.2 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# laravel-composer
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Travis](https://img.shields.io/travis/emtiazzahid/laravel-composer.svg?style=flat-square)]()
[![Total Downloads](https://img.shields.io/packagist/dt/emtiazzahid/laravel-composer.svg?style=flat-square)](https://packagist.org/packages/emtiazzahid/laravel-composer)![image](https://user-images.githubusercontent.com/10188029/73999285-72e4c380-498e-11ea-87cb-a834b2275e7d.png)
## Install
`composer require emtiazzahid/laravel-composer`Add Service Provider to `config/app.php` in `providers` section
```php
Emtiazzahid\LaravelComposer\LaravelComposerServiceProvider::class,
```Add a route in your web routes file:
```php
Route::get('composer', '\EmtiazZahid\LaravelComposer\LaravelComposerController@index');
```Go to `http://myapp/composer` or some other route
**Optionally** publish `index.blade.php` into `/resources/views/vendor/laravel-composer/` for view customization:
```
php artisan vendor:publish \
--provider="EmtiazZahid\LaravelComposer\LaravelComposerServiceProvider" \
--tag=views
```## Usage
Write a few lines about the usage of this package.## Testing
Run the tests with:``` bash
vendor/bin/phpunit
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.## Credits
- [Md. Emtiaz Zahid](https://github.com/emtiazzahid)
- [All Contributors](https://github.com/emtiazzahid/laravel-composer/contributors)## Todo
It's also good to be able to convert a set of todos to a .json object```.todo
- [X] installed package show
- [X] package details show
- [X] package download
- [X] package remove
- [] install new package
- [x] search installed package
- [x] search existing package
- [] deactive package (revoke service provider of package)
```## Security
If you discover any security-related issues, please email [email protected] instead of using the issue tracker.## License
The MIT License (MIT). Please see [License File](/LICENSE.md) for more information.