forked from phpversions/phpversions.info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaas-hosting.html
42 lines (41 loc) · 1.81 KB
/
paas-hosting.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
layout: default
---
<article class="hosts">
<section>
<div class="host-description">
<h2>PaaS Hosting</h2>
<p>These hosts are a little different. Often you're just pushing some code up and they handle the rest for you, but knowing which version they have and being able to chose is important.</p>
<hr>
</div>
<table class="tables tables__scrollbar paas sortable-data" data-sortable>
<thead>
<tr>
<th>Host</th>
<th>7.0</th>
<th>5.6</th>
<th>5.5</th>
<th>5.4</th>
<th>5.3</th>
<th>5.2</th>
<th>Default</th>
</tr>
</thead>
<tbody>
{% assign hosts = (site.data.paas_hosts | semver_sort_by: 'default') %}
{% for host in hosts reversed %}
<tr>
<td class="host-name"><a href="{{ host.url }}">{{ host.name }}</a></td>
<td class="host-info">{% if host.php70 %}{{ host.php70 }}{% else %}-{% endif %}</td>
<td class="host-info">{% if host.php56 %}{{ host.php56 }}{% else %}-{% endif %}</td>
<td class="host-info">{% if host.php55 %}{{ host.php55 }}{% else %}-{% endif %}</td>
<td class="host-info">{% if host.php54 %}{{ host.php54 }}{% else %}-{% endif %}</td>
<td class="host-info">{% if host.php53 %}{{ host.php53 }}{% else %}-{% endif %}</td>
<td class="host-info">{% if host.php52 %}{{ host.php52 }}{% else %}-{% endif %}</td>
<td class="host-info">{% if host.default %}{{ host.default }}{% else %}<em>???</em>{% endif %}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
</article>