forked from tamedevelopers/database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.05 KB
/
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
{
"name": "peterson/ultimate-orm-database",
"type": "library",
"description": "Lightweight ORM PHP Database Model.",
"keywords": ["php-database-orm-model", "orm database", "php orm", "php orm database", "php database query", "php database github", "orm database"],
"homepage": "https://github.com/tamedevelopers/php-database-orm-model",
"license": "MIT",
"authors": [
{"name": "Fredrick Peterson", "email": "[email protected]"},
{"name": "Tame Developers", "email": "[email protected]"}
],
"require": {
"vlucas/phpdotenv": "^5.3",
"yidas/pagination": "^1.0",
"symfony/var-dumper": "^6.2.8",
"php": ">=7.0"
},
"autoload": {
"psr-4": {
"UltimateOrmDatabase\\": "src/"
},
"classmap": ["src/*"]
},
"autoload-dev": {
"psr-4": {
"UltimateOrmDatabase\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
}
},
"minimum-stability": "dev"
}