-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ReComposerController: 1.) added: direct di injection the laravel way 2.) added: code format ReComposer: 1.) replaced: array_first to Arr::first to avoid breaking on newer versions composer.json: 1.) removed: support for laravel 8 and below 2.) removed: support for php 7.4 3.) added: bugfix to dependencies install
- Loading branch information
Showing
10 changed files
with
320 additions
and
287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,19 +6,26 @@ | |
[![MIT Licensed](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md) | ||
|
||
## Introduction | ||
Laravel ReComposer decomposes and lists all the installed packages with their | ||
dependencies along with the Laravel & the Server environment details your app is running in. | ||
|
||
Laravel ReComposer decomposes and lists all the installed packages with their dependencies along with the Laravel & the | ||
Server environment details your app is running in. | ||
|
||
## Required before installation | ||
|
||
Please make sure du is installed on linux, or unix, mac. | ||
|
||
### Important | ||
I regret to inform windows currently is not supported. | ||
|
||
I regret to inform windows currently is not supported. | ||
|
||
#### Exceptions to this is rule is | ||
|
||
Any type of virtualization docker, Virtual Machine and anything similar to it. | ||
|
||
## Installation | ||
|
||
To get started, install ReComposer using the Composer package manager: | ||
|
||
```shell | ||
composer require solumdesignum/recomposer | ||
``` | ||
|
@@ -29,11 +36,12 @@ Next, publish ReComposer resources using the vendor:publish command: | |
php artisan vendor:publish --provider="SolumDeSignum\ReComposer\ReComposerServiceProvider" | ||
``` | ||
|
||
This command will publish a config to your config directory, which will be | ||
created if it does not exist. | ||
This command will publish a config to your config directory, which will be created if it does not exist. | ||
|
||
### ReComposer Features | ||
|
||
The configuration file contains configurations. | ||
|
||
```php | ||
<?php | ||
|
||
|
@@ -86,22 +94,30 @@ Add a route in your web routes file: | |
```php | ||
Route::get('recomposer','\SolumDeSignum\ReComposer\Controllers\ReComposerController@index'); | ||
``` | ||
|
||
Go to http://yourapp/recomposer or the route you configured above in the routes file. | ||
|
||
## Contributing | ||
Thank you for considering contributing to the Laravel ReComposer. You can read the contribution guidelines [here](CONTRIBUTING.md) | ||
|
||
Thank you for considering contributing to the Laravel ReComposer. You can read the contribution | ||
guidelines [here](CONTRIBUTING.md) | ||
|
||
## Security | ||
|
||
If you discover any security-related issues, please email to [Solum DeSignum](mailto:[email protected]). | ||
|
||
## Author | ||
|
||
- [Oskars Germovs](https://github.com/Faks) | ||
|
||
## About | ||
|
||
[Solum DeSignum](https://solum-designum.eu) is a web design agency based in Latvia, Riga. | ||
|
||
## License | ||
|
||
Laravel ReComposer is open-sourced software licensed under the [MIT license](LICENSE.md) | ||
|
||
## Idea | ||
|
||
This package concept is based on a package decomposer (abandon). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.