forked from PHP-DI/PHP-DI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home_frameworks.twig
36 lines (28 loc) · 1.23 KB
/
home_frameworks.twig
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
<div id="integrations" class="container framework-integrations">
<h2><a href="#integrations">Integrations</a></h2>
<p>
PHP-DI integrates easily in your application or in frameworks.
</p>
<div class="row">
{% for id, name in frameworks %}
<div class="col-sm-3 col-md-2">
<div class="thumbnail">
<a href="{{ baseUrl }}/doc/frameworks/{{ id }}.html" title="{{ name }} integration with PHP-DI">
<img class="framework-logo" src="{{ baseUrl }}/img/frameworks/{{ id }}.png" alt="{{ name }}">
</a>
<div class="caption">
<h4>
<a href="{{ baseUrl }}/doc/frameworks/{{ id }}.html" title="{{ name }} integration with PHP-DI">{{ name }}</a>
</h4>
</div>
</div>
</div>
{% endfor %}
</div>
<p>
No framework? It works too, have a look at this <a href="https://github.com/PHP-DI/demo" title="PHP-DI demo application">demo application</a>.
</p>
<p class="text-center">
<a href="doc/#frameworks-integration" class="btn btn-default">Learn more</a>
</p>
</div>