-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
69 lines (61 loc) · 1.11 KB
/
composer.json
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
{
"name": "phpgt/webengine",
"description": "Rapid development engine.",
"license": [
"MIT"
],
"type": "library",
"require": {
"ext-dom": "*",
"ext-json": "*",
"php": ">=8.1",
"phpgt/config": "^1.1",
"phpgt/csrf": "^v1.9",
"phpgt/dom": "^v4.1",
"phpgt/domtemplate": "^3.3",
"phpgt/database": "^1.5",
"phpgt/http": "^1.2",
"phpgt/logger": "^1.0",
"phpgt/protectedglobal": "^v1.1",
"phpgt/routing": "^1.1",
"phpgt/servicecontainer": "^1.3",
"phpgt/session": "^1.1",
"phpgt/sync": "^1.3",
"phpgt/ulid": "^1.0",
"phpgt/gtcommand": "^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"
}
]
}