-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 921 Bytes
/
composer.json
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
{
"name": "v1p3r75/nexa-orm",
"description": "NexaORM is a modern PHP Object-Relational Mapping (ORM) library designed to simplify database interactions and streamline the development of PHP applications.",
"type": "library",
"license": "MIT",
"homepage": "https://nexa-orm.vercel.app/",
"keywords": [
"nexa",
"nexa-orm",
"nexaORM",
"Nexa PHP",
"ORM PHP",
"orm"
],
"require": {
"doctrine/dbal": "^4.0",
"doctrine/inflector": "^2.0"
},
"require-dev": {
"symfony/var-dumper": "6.4.x-dev"
},
"authors": [
{
"name": "Fortunatus KIDJE (v1p3r75)",
"email": "elfriedv16@gmail.com"
}
],
"autoload": {
"psr-4": {
"Nexa\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nexa\\Test\\": "tests/"
}
}
}