-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.29 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
{
"name": "artemeon/mantis2github",
"description": "A small CLI tool to create a GitHub issue from a Mantis ticket.",
"license": "MIT",
"bin": [
"bin/mantis2github"
],
"scripts": {
"phpstan": "php ./vendor/bin/phpstan analyse --memory-limit=4G",
"pint": "php ./vendor/bin/pint --test -v",
"pint:fix": "php ./vendor/bin/pint -v"
},
"authors": [
{
"name": "Stefan Idler",
"email": "stefan.idler@artemeon.de"
},
{
"name": "Marc Reichel",
"email": "marc.reichel@artemeon.de"
}
],
"autoload": {
"psr-4": {
"Artemeon\\M2G\\": "src/"
}
},
"require": {
"php": ">=8.2",
"ext-json": "*",
"artemeon/console": "^0.5.0",
"guzzlehttp/guzzle": "^7.3.0",
"symfony/console": "^5.0|^6.0|^7.0",
"symfony/yaml": "^5.0|^6.0|^7.0",
"nunomaduro/termwind": "^1.5|^2.0",
"composer-runtime-api": "^2.2.2",
"ahinkle/packagist-latest-version": "^2.0"
},
"require-dev": {
"jetbrains/phpstorm-attributes": "^1.0",
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^2.1.2",
"laravel/pint": "^1.14",
"rector/rector": "^2.0.7"
}
}