-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.35 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
{
"name": "mrcnpdlk/snmp",
"description": "Snmp utils",
"keywords": [
"snmp"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marcin Pudełek",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"ext-snmp": "*",
"mrcnpdlk/lib-configuration": "^0",
"mrcnpdlk/lib-exception": "^0",
"myclabs/php-enum": "^1"
},
"require-dev": {
"phpunit/phpunit": "^7",
"phpunit/php-code-coverage": "^6",
"friendsofphp/php-cs-fixer": "^2",
"phpstan/phpstan": "^0",
"phpstan/phpstan-phpunit": "^0",
"jangregor/phpstan-prophecy": "^0",
"monolog/monolog": "^1",
"timeweb/phpstan-enum": "^2.1.0"
},
"suggest": {
"monolog/monolog": "^1|^2",
"phpfastcache/phpfastcache": "~6.0"
},
"autoload": {
"psr-4": {
"Mrcnpdlk\\Lib\\Snmp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Mrcnpdlk\\Lib\\Snmp\\": "tests/suits/"
}
},
"scripts": {
"test": [
"@phpstan",
"@lint",
"@phpunit"
],
"phpunit": "phpunit --configuration phpunit.xml --coverage-text --colors=never",
"phpstan": "phpstan analyse",
"fixer": "php-cs-fixer fix --diff --show-progress=dots",
"lint": "php-cs-fixer fix --diff --dry-run"
}
}