Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comply with psr-0 autoloading standard (Composer 2.0) #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
All notable changes to the Laravel Decomposer will be documented in this file

## v1.2.3.1 (02-10-2020)

- Comply with psr-0 autoloading standard (Composer 2.0)

## v1.2.3 (24-08-2017)

- Correct class name for auto-discovery in Laravel 5.5

## v1.2.2 (05-06-2017)

- Package autoloading for Laravel 5.5

## v1.2.1 (06-04-2017)

- Added following helper methods to help categorize report stats more efficiently:

```php
Expand All @@ -16,39 +23,49 @@ Decomposer::addExtraStats($myArray); // A new block 'Extra Info' will be added c
```

## v1.2 (03-04-2017)

- Now App & Other Package devs can also [add extra personal package or app specific stats](https://github.com/lubusIN/laravel-decomposer/wiki/Add-your-extra-stats) by using Decomposer as a dependency in their project
- `getReportJson()` method added to get the same Decomposer report as JSON
- Fixed breaking of `getReportArray()` method

## v1.1.2 (19-03-2017)

- Dependency improvements

## v1.1.1 (18-03-2017)

- [PR](https://github.com/lubusIN/laravel-decomposer/pull/10) merged that fixes resolving the Decomposer version from Dev & Package dependencies.

## v1.1 (17-03-2017)

- The Decomposer system report can now be accessed as a multi-dimensional associative array anywhere in your code - [Docs](https://github.com/lubusIN/laravel-decomposer#helpers)
- Code structure improved

## v1.0.1 (02-03-2017)

- Minor Dependency issue fixed

## v1.0 (01-03-2017)

- Added search, sorting & pagination on the table containing name & versions of installed packages and their dependencies.
- Decomposes your Laravel & Server environment and gives all the required details & configurations about both on the same page.
- Generate the system report of your Laravel & server environment on a single click. This report can be very useful in troubleshooting any error. Why & what about the system report is documented [here](https://github.com/lubusIN/laravel-decomposer/blob/master/report.md)

## v0.1.4 (26-02-2017)

- Added check for no dependencies

## v0.1.3 (21-02-2017)

- Updated the Code to be formatted in accordance to PSR-2
- Added doc block comments for added benefit
- Aligned and spaced a couple of things just a tiny bit for extra readability
- Updated the redundant empty if-statement for a cleaner logic path

## v0.1.2 (18-02-2017)

- Now requires PHP >=5.6

## v0.1 (17-02-2017)

- Initial release