You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-15Lines changed: 9 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,6 @@ Manage your database with or without abstraction. This library is built on the P
4
4
5
5
[](https://packagist.org/packages/initphp/database)[](https://packagist.org/packages/initphp/database)[](https://packagist.org/packages/initphp/database)[](https://packagist.org/packages/initphp/database)[](https://packagist.org/packages/initphp/database)
6
6
7
-
PHP has powerful database abstraction libraries like Doctrine and Laravel Eloquent which are pretty nice. However, these are too extensive and cumbersome for projects that only need to easily create and execute database queries. If you don't always need migrations and seeding, this library will do the trick.
8
-
9
7
## Requirements
10
8
11
9
- PHP 7.4 and later.
@@ -125,10 +123,10 @@ $db->select('user.name as author_name', 'post.id', 'post.title')
125
123
* ORDER BY post ASC, post.created_at DESC
126
124
* LIMIT 20, 10
127
125
*/
128
-
$db->get(); // Install the SQL statement, execute, and reset the Query Builder.
0 commit comments