-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 884 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
{
"name": "tamedevelopers/database",
"type": "library",
"description": "Lightweight PHP ORM Database Model.",
"keywords": ["php orm database", "orm database", "php database", "php orm github"],
"homepage": "https://github.com/tamedevelopers/database",
"license": "MIT",
"authors": [
{
"name": "Fredrick Peterson",
"email": "[email protected]"
},
{
"name": "Tame Developers",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"tamedevelopers/support": "*"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Tamedevelopers\\Database\\": "src/"
},
"classmap": ["src/*"]
},
"minimum-stability": "stable",
"prefer-stable": true
}