Skip to content

Commit e5bb3d5

Browse files
committed
Updated readme file
1 parent 82b11b7 commit e5bb3d5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# CommonPHP - Database Library
22

3-
CommonPHP's Database Library is an advanced toolkit for database interaction and management in PHP applications. It offers a comprehensive set of features for connecting to databases, constructing queries, executing them, and handling results efficiently and securely.
3+
CommonPHP's Database Library is a toolkit for database interaction and management in PHP applications. It offers a comprehensive set of features for connecting to databases, objectifying queries, executing them, and handling results efficiently.
44

55
## Features
66

77
- **Connection Management**: Simplifies the setup and management of database connections.
8-
- **Query Builder**: Offers a fluent interface for constructing SQL queries to prevent syntax errors and SQL injection vulnerabilities.
8+
- **Query Builder**: Offers a fluent interface for constructing SQL queries including parameter management and dynamic query parts (SELECT * FROM {0} WHERE id=@id)
99
- **Type Conversion**: Provides an extensible system for converting between PHP types and database types.
1010
- **Exception Handling**: Includes detailed exceptions for precise error handling in database operations.
1111

@@ -15,14 +15,14 @@ The library is structured into several key components, including the Connection
1515

1616
## Requirements
1717

18-
Requires PHP 8.1 or newer and is built to integrate seamlessly with other CommonPHP libraries.
18+
Requires PHP 8.3 or newer and is built to integrate seamlessly with other CommonPHP libraries.
1919

2020
## Installation
2121

2222
Use Composer to install:
2323

2424
```shell
25-
# There is not yet a composer package for this library
25+
composer require comphp/dbengine
2626
```
2727
### Basic Usage
2828
Initialize the Connection Manager and use the Query Builder to create and execute database queries. Type converters can be used to handle complex data types, and exceptions are thrown for any errors encountered during database operations.

0 commit comments

Comments
 (0)