-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 2.83 KB
/
composer.json
File metadata and controls
92 lines (92 loc) · 2.83 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
{
"name": "technodelight/jira",
"description": "JIRA PHP console application for day-to-day development",
"license": "GPL-3.0-or-later",
"require": {
"php": ">= 8.2",
"ext-json": "*",
"ext-curl": "*",
"symfony/console": "~6",
"guzzlehttp/guzzle": "~7",
"symfony/config": "~6",
"symfony/dependency-injection": "~6",
"sirprize/queried": "^0.1.0",
"symfony/yaml": "~6",
"icanboogie/storage": "^4.2",
"technodelight/seconds-to-none": "~1.0",
"ssnepenthe/color-utils": "^0.4.2",
"technodelight/php-time-ago": "^1.1",
"loilo/fuse": "^3.2",
"sebastian/diff": "~4",
"technodelight/bytes-in-human": "^1.0",
"technodelight/shell-exec": "^1.0",
"technodelight/php-git": "^1.0",
"technodelight/symfony-configuration-cli-initialiser": "^2.0",
"symfony/expression-language": "^3.4",
"kriswallsmith/buzz": "~1.2",
"technodelight/php-cli-cross-platform-open": "^1.0",
"technodelight/php-cli-editor-input": "^1.0",
"technodelight/php-cli-iterm-image-renderer": "^1.0",
"technodelight/php-jira-domain-models": "^2.0",
"technodelight/php-jira-cli-interfaces": "^2.0",
"technodelight/php-jira-cli-tag-converter": "^2.0",
"knplabs/github-api": "^3.9",
"cweagans/composer-patches": "^1.7",
"ext-readline": "*",
"openai-php/client": "^0.8.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"behat/behat": "^3.3",
"phpspec/phpspec": "~7",
"phpmd/phpmd": "^2.15"
},
"authors": [
{
"name": "Zsolt Gál",
"email": "zenc@zenc.hu"
}
],
"autoload": {
"psr-0": {
"Technodelight\\Jira\\": "src",
"Technodelight\\JiraGitHubExtension\\": "src"
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"cweagans/composer-patches": true,
"php-http/discovery": true
}
},
"scripts": {
"test": [
"@test-unit",
"@test-acceptance",
"@test-analysis"
],
"test-unit": [
"phpspec --ansi run -fpretty"
],
"test-acceptance": [
"behat --colors"
],
"test-analysis": [
"phpmd src text cleancode,naming,unusedcode --color"
],
"build": [
"./build"
]
},
"extra": {
"patches": {
"icanboogie/storage": {
"Fix mixed return types": "vendor-patches/0001-patch-array-access.patch",
"Fix iterable": "vendor-patches/0002-patch-cache.patch"
}
}
},
"autoload-dev": {"psr-0": {"": "features/bootstrap"}},
"bin": ["bin/jira"]
}