-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
38 lines (38 loc) · 1.03 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
{
"name": "reload/jira-security-issue",
"description": "Create Jira issues if it doesn't exist",
"license": "MIT",
"require": {
"php": ">=8.2.0",
"lesstif/php-jira-rest-client": "^5",
"webignition/symfony-console-typed-input": "^0.6"
},
"autoload": {
"psr-4": {
"Reload\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Reload\\": "tests/"
}
},
"require-dev": {
"appocular/coding-standard": "^2.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.0",
"sempro/phpunit-pretty-print": "^1.2",
"symfony/console": "^5.0",
"phpspec/prophecy": "^1.15",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.3"
},
"config": {
"lock": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}