-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.66 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.66 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "eril/tbl-class",
"description": "CLI tool that Generates stable PHP constants from your database schema to improve IDE autocomplete and avoid SQL typos.",
"homepage": "https://github.com/erilshackle/tbl-class-php",
"type": "library",
"keywords": [
"database-schema",
"database-constants",
"sql",
"raw-sql",
"schema",
"code-generation",
"php",
"cli",
"mysql",
"sqlite",
"psr-4",
"autocomplete",
"developer-experience"
],
"license": "MIT",
"authors": [
{
"name": "Eril TS Carvalho",
"homepage": "https://github.com/erilshackle",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/erilshackle/tbl-class-php/issues",
"source": "https://github.com/erilshackle/tbl-class-php",
"docs": "https://github.com/erilshackle/tbl-class-php#readme",
"wiki": "https://github.com/erilshackle/tbl-class-php/wiki"
},
"require": {
"php": ">=8.1",
"ext-pdo": "*",
"symfony/yaml": "^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Eril\\TblClass\\": "src/"
}
},
"bin": [
"bin/tbl-class"
],
"scripts": {
"tbl:generate": "tbl-class",
"tbl:check": "tbl-class --check",
"tbl:sync": [
"@tbl:check",
"@tbl:generate"
]
},
"suggest": {
"ext-yaml": "For faster YAML parsing",
"vlucas/phpdotenv": "Optional .env support for database configuration"
},
"config": {
"sort-packages": true
}
}