-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 871 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
{
"name": "mstone121/php-object-sql",
"description": "An object-oriented approach to SQL generation",
"type": "library",
"keywords": [
"sql",
"object-oriented"
],
"homepage": "https://github.com/mstone121/php-object-sql",
"readme": "https://github.com/mstone121/php-object-sql/blob/main/README.md",
"license": "MIT",
"authors": [
{
"name": "Matt Stone",
"email": "mstone121@gmail.com",
"homepage": "https://github.com/mstone121/",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/mstone121/php-object-sql",
"issues": "https://github.com/mstone121/php-object-sql/issues"
},
"require": {
"php": ">=7.2"
},
"autoload": {
"psr-4": {
"ObjectSql\\": "/src"
}
}
}