-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 942 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 942 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
{
"name": "intrd/sqlite-dbintrd",
"description": "DBIntrd - Simple PHP framework for SQLite3 databases. A magic way to automatically create objects and persists data at SQLite3 tables.",
"keywords": ["php","sqlite","framework","database"],
"homepage": "http://github.com/intrd/sqlite-dbintrd",
"authors": [
{
"name": "intrd (Danilo Salles)",
"email": "x@dann.com.br",
"homepage": "http://dann.com.br",
"role": "Developer"
}
],
"license": "CC-BY-SA-4.0",
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-4": {
"database\\":"src/"
}
},
"extra": {
"author_twitter":"intrd",
"copyright_author":"intrd",
"license_title":"Creative Commons Attribution-ShareAlike 4.0",
"license_url":"http://creativecommons.org/licenses/by-sa/4.0"
}
}