forked from enlightn/enlightn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
83 lines (83 loc) · 2.22 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
{
"name": "chrisinit/enlightn",
"description": "Enlightn - Your performance & security consultant, an artisan command away.",
"type": "library",
"keywords": [
"laravel",
"package",
"static analysis",
"dynamic analysis",
"static analyzer",
"dynamic analyzer",
"security",
"performance",
"audit",
"analysis tool"
],
"homepage": "https://www.laravel-enlightn.com/",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Paras Malhotra",
"email": "[email protected]"
},
{
"name": "Miguel Piedrafita",
"email": "[email protected]"
},
{
"name": "Lars Klopstra",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/enlightn/enlightn/issues",
"docs": "https://www.laravel-enlightn.com/docs/"
},
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
"laravel/framework": "^6.0|^7.0|^8.0",
"nikic/php-parser": "^4.0",
"nunomaduro/larastan": "^0.6.11||^0.7||^1.0",
"phpstan/phpstan": "^0.12.59||^1.0",
"enlightn/security-checker": "^1.1",
"symfony/finder": "^4.0|^5.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.8",
"brianium/paratest": "^6.1",
"fideloper/proxy": "^4.4",
"friendsofphp/php-cs-fixer": "^2.18",
"mockery/mockery": "^1.3",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"phpunit/phpunit": "^7.5|^8.0|^9.0",
"predis/predis": "*"
},
"autoload": {
"psr-4": {
"Enlightn\\Enlightn\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Enlightn\\Enlightn\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/paratest --colors"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Enlightn\\Enlightn\\EnlightnServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}