forked from willdurand/nmap
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (44 loc) · 1.34 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
{
"name": "palepurple/nmap",
"description": "nmap is a PHP wrapper for Nmap, a free security scanner for network exploration. This is (mostly) a fork of willdurand/nmap with PHP 7 and vimeo/psalm static analysis improvements.",
"license": "MIT",
"authors": [
{
"name": "William DURAND",
"email": "[email protected]"
},
{
"name": "David Goodwin",
"email": "[email protected]"
}
],
"require": {
"php": ">= 8.0",
"symfony/process": "~2.0|~3.0|~4.0|~5.0|~6.0|~7.0",
"ext-simplexml": "*",
"symfony/filesystem": "~6.0|~7.0"
},
"require-dev": {
"phpunit/phpunit": "7.*|8.*",
"psalm/phar": "*",
"php-parallel-lint/php-parallel-lint":"*",
"squizlabs/php_codesniffer" : "*",
"mockery/mockery": "*"
},
"autoload": {
"psr-0": { "Nmap": "src/" }
},
"scripts": {
"lint": "vendor/bin/parallel-lint src",
"psalm": "vendor/bin/psalm.phar --show-info=false",
"phpcs": "vendor/bin/phpcs --standard=PSR2 src",
"phpcbf": "vendor/bin/phpcbf --standard=PSR2 src",
"phpunit": "vendor/bin/phpunit",
"build" : [
"@lint",
"@phpcs",
"@psalm",
"@phpunit"
]
}
}