-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (74 loc) · 4.22 KB
/
Copy pathindex.html
File metadata and controls
76 lines (74 loc) · 4.22 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
layout: default
title: UniMapper
---
<a href="{{ site.github.owner_url }}/unimapper"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://github-camo.global.ssl.fastly.net/52760788cde945287fbb584134c4cbc2bc36f904/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f77686974655f6666666666662e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"></a>
<div class="jumbotron text-center">
<h1>UniMapper</h1>
<p class="lead">An adapter-based and storage independent ORM for PHP</p>
<p>
<a href="http://github.com/unimapper/unimapper/releases" class="btn btn-default btn-lg" title="Get the latest version">Download <i class="fa fa-download"></i></a>
<a href="http://unimapper.readthedocs.org" class="btn btn-flat btn-lg" title="Read the documentation">Documentation <i class="fa fa-arrow-circle-o-right"></i></a>
</p>
</div>
<div class="bg-primary">
<div class="container">
<h1 class="text-center">Features</h1>
<p>
<div class="row">
<div class="col-lg-4">
<h3><i class="fa fa-sitemap"></i> Multiple storage support</h3>
<p>A uniform API for accessing stuff from different kinds of databases, protocols, and 3rd party APIs.</p>
</div>
<div class="col-lg-4">
<h3><i class="fa fa-code"></i> Query builder</h3>
<p>Use the same syntax for all of your models. That means you write the same code to get and store your business objects, whether its data source live in MySQL, MongoDB etc.</p>
</div>
<div class="col-lg-4">
<h3><i class="fa fa-check-circle"></i> Built-in validation</h3>
<p>It gives you the opportunity to clearly implement validation directly at one point in model layer before you save or update records.</p>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<h3><i class="fa fa-plus-circle"></i> Associations</h3>
<p>Declare and manage your model relations regardless of its data storage.</p>
</div>
<div class="col-lg-4">
<h3><i class="fa fa-plus-circle"></i> Fully extendable</h3>
<p>There are some built-in queries, adapters and framework integrations, but if you need something more, just write your own extension based on official API.</p>
</div>
<div class="col-lg-4">
<h3><i class="fa fa-sort-amount-asc"></i> Minimal requirements</h3>
<p>You don't need any framework, extension or third-part library. Everything you need is <a href="http://www.php.net/">PHP 5.4+</a> and some nice application for the use of this tool.</p>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-lg-offset-4">
<h3><i class="fa fa-globe"></i> Opensource</h3>
<p>Everything is licensed under the <a href="{{ site.baseurl }}/license">MIT</a> license so you can use it in your applications arbitrarily.</p>
</div>
</div>
</p>
</div>
</div>
<div class="container">
<h1 class="text-center">What's next?</h1>
<p class="lead text-muted text-center">version 1.1</p>
<div class="row">
<div class="col-lg-3 col-lg-offset-3">
<ul class="fa-ul">
<li><h4><i class="fa-li fa fa-square"></i> Migrations support</h4></li>
<li><h4><i class="fa-li fa fa-square"></i> Validations translation</h4></li>
<li><h4><i class="fa-li fa fa-square"></i> Multiple queries</h4></li>
</ul>
</div>
<div class="col-lg-3">
<ul class="fa-ul">
<li><h4><i class="fa-li fa fa-square"></i> Generators</h4></li>
<li><h4><i class="fa-li fa fa-square"></i> CouchDB adapter</h4></li>
<li><h4><i class="fa-li fa fa-square"></i> Symfony 2 bundle</h4></li>
</ul>
</div>
</div>
</div>