-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.51 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.51 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
64
65
66
67
68
69
70
71
72
73
{
"name":"zibings/zsf-cli",
"description":"Collection of utility scripts for use alongside ZSF",
"minimum-stability":"dev",
"license":"Apache-2.0",
"version":"1.4.2",
"autoload":{
"exclude-from-classmap": ["Tests/"],
"psr-0": {
"Zsf\\": "./Zsf",
"Zsf\\Utils\\": "./Zsf/Utils",
"Zsf\\Utils\\SchemaReader\\": "./Zsf/Utils/SchemaReader",
"Zsf\\Utils\\Translators\\": "./Zsf/Utils/Translators"
},
"psr-4": {
"Zsf\\": "./Zsf",
"Zsf\\Utils\\": "./Zsf/Utils",
"Zsf\\Utils\\SchemaReader\\": "./Zsf/Utils/SchemaReader",
"Zsf\\Utils\\Translators\\": "./Zsf/Utils/Translators"
},
"files": [
"scripts/generate.script.php",
"scripts/scaffold.script.php",
"scripts/version.script.php",
"Zsf/Utils/CliFunctions.php",
"Zsf/Utils/RandomFunctions.php",
"Zsf/Utils/SchemaReader.php"
]
},
"authors":[
{
"name":"Jovanni Djonaj"
},
{
"name":"Andrew Male"
},
{
"name":"Matthew Hykes"
}
],
"repositories": [
{
"url": "https://github.com/AndyM84/pseudo.git",
"type": "git"
}
],
"require": {
"php": ">=8.3",
"stoic/stoic": "^1.3",
"stoic/io": "^1.3",
"stoic/pdo": "^1.3",
"ext-pdo": "*",
"ext-json": "*",
"andym84/config": "^1.3",
"stoic/web": "^1.3",
"ext-ctype":"*"
},
"require-dev": {
"phpunit/phpunit": "^10",
"jimbojsb/pseudo": "dev-AndyM84-8_3"
},
"bin": [
"zsf-cli"
],
"extra": {
"files": [
"templates/generate/ts-model.tpl",
"templates/scaffold/api.tpl",
"templates/scaffold/cls.tpl",
"templates/scaffold/rpo.tpl"
]
}
}