-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (107 loc) · 5.3 KB
/
Copy pathindex.html
File metadata and controls
109 lines (107 loc) · 5.3 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!doctype html>
<html lang="en" dir="ltr" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PHP micro-ORM library</title>
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="PHP ORM">
<meta name="twitter:description" content="PHP micro-ORM inspired by Eloquent ORM by Laravel">
<meta name="twitter:image:src" content="https://riverside.github.io/php-orm/img/php-orm.png">
<meta name="twitter:url" content="https://riverside.github.io/php-orm/">
<meta name="twitter:site" content="@zino_ui">
<meta name="twitter:creator" content="@DimitarIvanov">
<meta property="og:title" content="PHP ORM">
<meta property="og:site_name" content="Zino UI">
<meta property="og:url" content="https://riverside.github.io/php-orm/">
<meta property="og:description" content="PHP micro-ORM inspired by Eloquent ORM by Laravel">
<meta property="og:type" content="article">
<meta property="og:locale" content="en_US">
<meta property="article:author" content="https://twitter.com/DimitarIvanov">
<meta property="article:publisher" content="https://github.com/riverside">
<meta property="og:image" content="https://riverside.github.io/php-orm/img/php-orm.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/docs.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-298048-24"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-298048-24');
</script>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./">PHP ORM</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="./">Home</a></li>
<li><a href="api.html">API</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://github.com/riverside/php-orm">View project on GitHub</a></li>
</ul>
</div>
</div>
</nav>
<div class="container" id="main">
<div class="row">
<div class="col-md-12">
<h1>php-orm</h1>
<p>PHP micro-ORM inspired by Eloquent ORM by Laravel</p>
<section>
<h3>Requirements</h3>
<ul>
<li>PHP >= 7.1</li>
<li>PDO extension</li>
</ul>
</section>
<section>
<h3>Installation</h3>
<p>If Composer is not installed on your system yet, you may go ahead and install it using this command line:</p>
<pre class="prettyprint">$ curl -sS https://getcomposer.org/installer | php</pre>
<p>Next, add the following require entry to the <code>composer.json</code> file in the root of your project.</p>
<pre class="prettyprint">{
"require" : {
"riverside/php-orm" : "^2.0.1"
}
}</pre>
<p>Finally, use Composer to install php-orm and its dependencies:</p>
<pre class="prettyprint">$ php composer.phar install</pre>
</section>
<section>
<h3>Downloads</h3>
<p>The project is hosted on GitHub.</p>
<p>
<a class="btn btn-primary" href="https://github.com/riverside/php-orm/archive/refs/tags/v2.0.1.zip">Download .zip file</a>
<a class="btn btn-primary" href="https://github.com/riverside/php-orm/archive/refs/tags/v2.0.1.tar.gz">Download .tar.gz file</a>
</p>
</section>
<section>
<h3>Author</h3>
<p>PHP ORM is developed by Dimitar Ivanov. You can find me on <a target="_blank" href="https://twitter.com/DimitarIvanov">Twitter</a>
or <a href="https://github.com/riverside">GitHub</a>.</p>
</section>
<section>
<h3>License</h3>
<p>The project is licensed under the <a href="https://github.com/riverside/php-orm/blob/master/LICENSE">MIT</a> license.</p>
</section>
</div>
</div>
</div>
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/run_prettify.js"></script>
</body>
</html>