-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeta.json
More file actions
48 lines (47 loc) · 1.25 KB
/
meta.json
File metadata and controls
48 lines (47 loc) · 1.25 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "pg_git",
"abstract": "Git implementation in PostgreSQL",
"description": "A PostgreSQL extension implementing Git-like version control functionality using native database features",
"version": "0.4.0",
"maintainer": [
"pg_git maintainers <your.email@example.com>"
],
"license": "postgresql",
"provides": {
"pg_git": {
"abstract": "Git implementation in PostgreSQL",
"file": "sql/pg_git--0.4.0.sql",
"docfile": "README.md",
"version": "0.4.0"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "12.0.0",
"plpgsql": 0,
"pgcrypto": 0,
"pg_trgm": 0,
"plpython3u": 0
}
}
},
"resources": {
"repository": {
"url": "https://github.com/seanwevans/pg_git.git",
"web": "https://github.com/seanwevans/pg_git",
"type": "git"
}
},
"generated_by": "pg_git maintainers",
"meta-spec": {
"version": "1.0.0",
"url": "https://pgxn.org/meta/spec.txt"
},
"tags": [
"git",
"version control",
"vcs",
"repository"
]
}