Imported code from old repository

This commit is contained in:
2022-11-22 15:46:36 +01:00
parent 976fdc0199
commit 77cf9e05f1
91 changed files with 18969 additions and 2 deletions
+40
View File
@@ -0,0 +1,40 @@
<h5>Whitelisted Classes from Packages</h5>
<ul>
{% for className in config['coid://phpmae.dev/whitelistsClassname'] %}
<li><code>{{ className.o_value }}</code></li>
{% endfor %}
</ul>
<h5>Defined Packages</h5>
<table>
<thead>
<tr>
<th>Name</th>
<th>Version</th>
</tr>
</thead>
<tbody>
{% for package in custom.defined %}
<tr>
<td><a href="https://packagist.org/packages/{{ package.name }}">{{ package.name }}</a></td>
<td>{{ package.version }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<h5>Actual Installed Packages</h5>
<table>
<thead>
<tr>
<th>Name</th>
<th>Version</th>
</tr>
</thead>
<tbody>
{% for package in custom.actual %}
<tr>
<td>{% if package.defined %}<strong>{% endif %}<a href="https://packagist.org/packages/{{ package.name }}">{{ package.name }}</a>{% if package.defined %}</strong>{% endif %}</td>
<td>{{ package.version }}</td>
</tr>
{% endfor %}
</tbody>
</table>