-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
35 lines (35 loc) · 948 Bytes
/
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
{
"name": "reload/github-security-jira",
"description": "Create Jira tickets for GitHub security alerts",
"license": "MIT",
"require": {
"php": ">=8.1",
"softonic/graphql-client": "^2.1",
"symfony/console": "^5",
"symfony/yaml": "^6.1",
"reload/jira-security-issue": "^2.0.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/appocular/coding-standard"
}
],
"autoload": {
"psr-4": {
"GitHubSecurityJira\\": "src/"
}
},
"require-dev": {
"phpstan/phpstan": "^1",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.2"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}