-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (62 loc) · 1.14 KB
/
composer.json
File metadata and controls
70 lines (62 loc) · 1.14 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
{
"name": "phpgt/webengine",
"description": "Rapid development engine.",
"license": [
"MIT"
],
"type": "library",
"require": {
"ext-posix": "*",
"ext-dom": "*",
"ext-json": "*",
"php": ">=8.1",
"phpgt/config": "^1.0",
"phpgt/csrf": "^v1.9",
"phpgt/dom": "^v4.0",
"phpgt/domtemplate": "^v3.1",
"phpgt/database": "^1.4",
"phpgt/http": "^1.1",
"phpgt/logger": "^1.0",
"phpgt/protectedglobal": "^v1.1",
"phpgt/routing": "^1.0",
"phpgt/servicecontainer": "^1.1",
"phpgt/session": "^1.1",
"phpgt/sync": "^1.2",
"phpgt/ulid": "^v1.0.0",
"phpgt/gtcommand": "^v1.0",
"psr/http-server-middleware": "^1.0",
"willdurand/negotiation": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "v1.9.17",
"phpunit/phpunit": "v9.5.21"
},
"autoload": {
"psr-4": {
"Gt\\WebEngine\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Gt\\WebEngine\\Test\\": "./test/phpunit"
}
},
"keywords": [
"php",
"phpgt",
"php.gt",
"gt",
"framework",
"webservice",
"webengine",
"router",
"toolbox",
"prototype"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}