-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.08 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
{
"name": "reload/drupal-security-jira",
"description": "Create Jira tickets for vulnerable Drupal projects",
"type": "project",
"require": {
"symfony/console": "^5.3",
"symfony/http-client": "^7.1",
"ext-openssl": "*",
"veewee/xml": "^4",
"reload/jira-security-issue": "^2",
"composer/semver": "^3.3",
"thecodingmachine/safe": "^2.5",
"vlucas/phpdotenv": "^5.5",
"azjezz/psl": "^3.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"DrupalSecurityJira\\": "src/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpro/grumphp-shim": "^2.9",
"squizlabs/php_codesniffer": "^3.7",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"phpstan/extension-installer": "^1.3",
"phpunit/phpunit": "^11.4",
"phpstan/phpstan-phpunit": "^1.3"
},
"config": {
"platform": {
"php": "8.4"
},
"allow-plugins": {
"phpro/grumphp-shim": true,
"phpstan/extension-installer": true
}
}
}