-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMETA.json
More file actions
46 lines (46 loc) · 1.16 KB
/
META.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "pg_slug_gen",
"abstract": "Generate cryptographically secure unique random slugs",
"description": "PostgreSQL extension that generates unique random slugs based on timestamp with cryptographic randomness. Guarantees uniqueness when max 1 insert per time unit.",
"version": "1.0.0",
"maintainer": "Fernando Olle",
"license": "mit",
"provides": {
"pg_slug_gen": {
"abstract": "Generate unique random slugs with cryptographic security",
"file": "sql/pg_slug_gen--1.0.sql",
"docfile": "README.md",
"version": "1.0.0"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "12.0.0"
}
}
},
"resources": {
"bugtracker": {
"web": "https://github.com/fernandoolle/pg_slug_gen/issues"
},
"repository": {
"url": "git://github.com/fernandoolle/pg_slug_gen.git",
"web": "https://github.com/fernandoolle/pg_slug_gen",
"type": "git"
}
},
"generated_by": "Fernando Olle",
"meta-spec": {
"version": "1.0.0",
"url": "https://pgxn.org/spec/"
},
"tags": [
"slug",
"unique",
"random",
"timestamp",
"generator",
"url-friendly"
]
}