-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 828 Bytes
/
Copy pathcomposer.json
File metadata and controls
39 lines (39 loc) · 828 Bytes
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
{
"name": "shiberal/orm",
"description": "A lightweight PHP ORM with schema-based migrations, model generation, and validation",
"type": "library",
"keywords": [
"orm",
"database",
"migration",
"schema",
"php",
"mysql"
],
"license": "MIT",
"version": "1.0.0",
"authors": [
{
"name": "Francesco Grelli",
"email": "francesco.grelli98@gmail.com"
}
],
"require": {
"php": "^8.0",
"ext-pdo": "*"
},
"autoload": {
"psr-4": {
"shiberal\\orm\\": "src/"
}
},
"bin": [
"bin/migrate",
"bin/generate",
"bin/validate",
"bin/dtgen",
"bin/reverse"
],
"minimum-stability": "dev",
"prefer-stable": true
}