-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (74 loc) · 1.44 KB
/
composer.json
File metadata and controls
82 lines (74 loc) · 1.44 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
74
75
76
77
78
79
80
81
82
{
"name": "phpgt/webengine",
"description": "Rapid development engine.",
"license": [
"MIT"
],
"type": "library",
"require": {
"ext-dom": "*",
"ext-json": "*",
"php": ">=8.1",
"phpgt/async": "^1.0",
"phpgt/build": "^1.2",
"phpgt/cli": "^1.3",
"phpgt/config": "^1.1",
"phpgt/cookie": "^1.0",
"phpgt/cron": "^1.0",
"phpgt/csrf": "^1.9",
"phpgt/cssxpath": "^1.3",
"phpgt/curl": "^3.1",
"phpgt/daemon": "^1.1",
"phpgt/database": "^1.5",
"phpgt/dom": "^4.1",
"phpgt/domtemplate": "^3.3",
"phpgt/domvalidation": "^1.0",
"phpgt/fetch": "^1.2",
"phpgt/filecache": "^1.2",
"phpgt/http": "^1.2",
"phpgt/input": "^1.3",
"phpgt/logger": "^1.0",
"phpgt/promise": "^2.4",
"phpgt/protectedglobal": "^1.1",
"phpgt/routing": "1.1.3",
"phpgt/server": "^1.1",
"phpgt/servicecontainer": "^1.3",
"phpgt/session": "1.2.4",
"phpgt/sync": "^1.3",
"phpgt/ulid": "^1.0",
"psr/http-server-middleware": "^1.0",
"willdurand/negotiation": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "v1.8.0",
"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"
}
]
}