-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
38 lines (38 loc) · 914 Bytes
/
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
{
"name": "geerthauwaerts/exabgp-voipbl",
"description": "The ExaBGP process plugin script to RTBH a local and the voipbl.org blacklist.",
"keywords": [
"exabgp",
"plugin",
"rtbh",
"voipbl"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Geert Hauwaerts",
"email": "geert@hauwaerts.be",
"homepage": "https://www.hauwaerts.be"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"cvuorinen/phpdoc-markdown-public": ">=0.2",
"jms/serializer": "^1.7",
"squizlabs/php_codesniffer": ">=3.0",
"phpdocumentor/phpdocumentor": ">=2.9",
"phpunit/phpunit": ">=8.0"
},
"autoload": {
"psr-4": {
"ExaBGP\\": "src/ExaBGP/"
}
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml --extensions=php src/ tests/",
"phpdoc": "phpdoc && sed -i \"s/'/'/g\" docs/php/README.md",
"phpunit": "phpunit"
}
}