forked from Lansoweb/LosRouterOs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.21 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
{
"name" : "zooxsmart/los-router-os",
"description" : "LosRouterOs provides RouterOS (Mikrotik) functionality",
"require" : {
"php": ">=7.4.0",
"psr/container": "^1.0",
"pear2/net_transmitter": "1.0.0b2",
"zooxsmart/net_routeros": "1.0.0b7"
},
"authors" : [ {
"name" : "Leandro Silva",
"email" : "[email protected]",
"homepage" : "http://leandrosilva.info"
} ],
"keywords" : [ "los", "routeros", "mikrotik" ],
"autoload" : {
"psr-4" : {
"LosRouterOs\\" : "src/"
},
"classmap" : [ "./" ]
},
"suggest" : {
"zooxsmart/los-log" : "zooxsmart/los-log for logging",
"zooxsmart/los-ui" : "zooxsmart/los-ui for twitter bootstrap styling, jquery, chosen and other libraries"
},
"license" : "MIT",
"type" : "library",
"homepage" : "http://github.com/Lansoweb/LosRouterOs",
"scripts" : {
"check": [
"@cs-check",
"@phpstan"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse -l max src"
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.3",
"phpstan/phpstan": "^0.12.58"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}