-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
99 lines (91 loc) · 1.86 KB
/
composer.json
File metadata and controls
99 lines (91 loc) · 1.86 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "phpgt/webengine",
"description": "Minimalistic, ergonomic PHP toolkit.",
"license": [
"MIT"
],
"type": "library",
"require": {
"ext-dom": "*",
"ext-json": "*",
"ext-curl": "*",
"php": ">=8.4",
"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.3.5",
"phpgt/input": "^1.3",
"phpgt/logger": "^1.0",
"phpgt/promise": "^2.4",
"phpgt/protectedglobal": "^2.0",
"phpgt/routing": "^1.1",
"phpgt/server": "^1.1",
"phpgt/servicecontainer": "^1.3",
"phpgt/session": "^1.2",
"phpgt/sync": "^1.3",
"phpgt/ulid": "^1.0",
"willdurand/negotiation": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.4",
"phpmd/phpmd": "^2.13",
"squizlabs/php_codesniffer": "^3.7 || ^4.0"
},
"autoload": {
"files": [
"./gt-compat.php"
],
"psr-4": {
"GT\\WebEngine\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"GT\\WebEngine\\Test\\": "./test/phpunit"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --configuration phpunit.xml",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=512M --level 6 src",
"phpcs": "vendor/bin/phpcs src --standard=phpcs.xml",
"phpmd": "vendor/bin/phpmd src/ text phpmd.xml",
"test": [
"@phpunit",
"@phpstan",
"@phpcs",
"@phpmd"
]
},
"keywords": [
"php",
"phpgt",
"php.gt",
"gt",
"framework",
"webservice",
"webengine",
"router",
"toolbox",
"prototype"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/phpgt"
}
]
}