This repository has been archived by the owner on Sep 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
109 lines (109 loc) · 2.98 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"type": "project",
"license": "MIT",
"name": "debricked/cli",
"description": "Command Line Tool (CLI) for interacting with Debricked",
"keywords": [
"vulnerability",
"vulnerability-management",
"dependency-management"
],
"homepage": "https://debricked.com/documentation/integrations/cli.html",
"authors": [
{
"name": "Oscar Reimer",
"email": "[email protected]",
"role": "Maintainer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/debricked/debricked-cli/issues",
"docs": "https://debricked.com/documentation/integrations/cli.html"
},
"require": {
"php": "^7.4.0|^8.0.0",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-zip": "*",
"debricked/shared": "^1.1.0",
"symfony/console": "^5.2.0",
"symfony/dotenv": "^5.2.0",
"symfony/finder": "^5.2.0",
"symfony/flex": "^1.1",
"symfony/framework-bundle": "^5.2.0",
"symfony/http-client": "^5.2.0",
"symfony/mime": "^5.2.0",
"symfony/yaml": "^5.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^0.12.2",
"phpstan/phpstan-phpunit": "^0.12.0",
"phpstan/phpstan-symfony": "^0.12.1",
"symfony/browser-kit": "^5.2.0",
"symfony/css-selector": "^5.2.0",
"symfony/phpunit-bridge": "^6.0"
},
"minimum-stability": "beta",
"prefer-stable": true,
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"symfony/flex": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"cs": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --dry-run --stop-on-violation --diff",
"phpstan": "php -d memory_limit=-1 vendor/bin/phpstan analyse src/ --level=7 ",
"static": [
"@cs",
"@phpstan"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^5.2.0"
}
}
}