-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (32 loc) · 910 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": "maharder/postgresql-orm",
"description": "PostgreSQL ORM Class for plain uses without models",
"keywords": ["postgresql","postgres","psql","pdo","orm","class"],
"homepage": "https://github.com/Gokujo/postgresql-orm",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Maxim Harder",
"email": "[email protected]",
"homepage": "https://devcraft.club"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"saggre/phpdocumentor-markdown": "^0.1.3"
},
"scripts": {
"create-docs": "php ./phpDocumentor.phar -d ./classes -t ./docs --template=./vendor/saggre/phpdocumentor-markdown/themes/markdown"
},
"autoload": {
"psr-0": {
"PostgreSQL": "classes"
},
"files": [
"classes/PostgreSQL.php"
]
}
}