-
-
Notifications
You must be signed in to change notification settings - Fork 42
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
feature/add-currently-installed-package-versions #17
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,14 +128,15 @@ | |
<table id="decomposer" class="table table-hover table-bordered"> | ||
<thead> | ||
<tr> | ||
<th>Package Name : Version</th> | ||
<th>Package Name : Version : Version Installed</th> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can make this |
||
<th>Dependency Name : Version</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
|
||
@foreach($packages as $package) | ||
<tr> | ||
<td>{{ $package['name'] }} : <span class="label ld-version-tag">{{ $package['version'] }}</span></td> | ||
<td>{{ $package['name'] }} : <span class="label ld-version-tag">{{ $package['version'] }}</span> : <span class="label ld-version-tag">{{ $package['version-installed']->version }}</span> </td> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess only There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hey mate, I'm actually taking the entire package object and passing it across, so you could effectively get more than the version:
I can pass just the version across if you prefer it that way, I normally lean to more info so it's easy to extend on. |
||
<td> | ||
<ul> | ||
@if(is_array($package['dependencies'])) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected 1 space after FOREACH keyword; 0 found