-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (46 loc) · 923 Bytes
/
composer.json
File metadata and controls
50 lines (46 loc) · 923 Bytes
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
{
"name": "phpgt/gtcommand",
"description": "Provides the `gt` command for automating WebEngine development.",
"bin": [
"bin/gt"
],
"require": {
"php": ">=8.3",
"phpgt/cli": "^1.3",
"phpgt/server": "^1.2",
"phpgt/cron": "^1.0",
"phpgt/database": "^1.7",
"phpgt/build": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^v1.10",
"phpmd/phpmd": "^2.13",
"squizlabs/php_codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"Gt\\GtCommand\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Gt\\GtCommand\\Test\\": "./test/phpunit"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --level 6 src --memory-limit 256M",
"phpcs": "vendor/bin/phpcs src --standard=phpcs.xml",
"phpmd": "vendor/bin/phpmd src/ text phpmd.xml",
"test": [
"@phpstan",
"@phpcs",
"@phpmd"
]
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}