-
Notifications
You must be signed in to change notification settings - Fork 116
/
composer.json
48 lines (48 loc) · 1.86 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
{
"name": "pear2/net_routeros",
"description": "This package allows you to read and write information from a RouterOS host using MikroTik's RouterOS API.",
"keywords": ["routeros", "package", "api", "mikrotik", "pear2", "router"],
"homepage": "http://pear2.github.com/Net_RouterOS/",
"license": "LGPL-2.1",
"authors": [
{
"name": "Vasil Rangelov",
"email": "boen.robot@gmail.com",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/pear2/Net_RouterOS/issues",
"wiki": "https://github.com/pear2/Net_RouterOS/wiki"
},
"require": {
"php": ">=5.3.0",
"pear2/net_transmitter": ">=1.0.0b1"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"squizlabs/php_codesniffer": "@stable",
"pear2/cache_shm": "dev-develop",
"pear2/console_commandline": "dev-master",
"pear2/console_color": "dev-develop"
},
"suggest": {
"pear2/cache_shm": "Enables persistent connections.",
"pear2/console_commandline": "Enables the console",
"pear2/console_color": "Enables colors in the console",
"ext-apc": "This, APCu or Wincache is required for persistent connections.",
"ext-apcu": "This, APC or Wincache is required for persistent connections.",
"ext-wincache": "This, APC or APCu is required for persistent connections. Reccomended for Windows.",
"ext-openssl": "Enables encrypted connections."
},
"autoload": {
"psr-0": {
"PEAR2\\Net\\RouterOS\\": "src/",
"PEAR2\\Net\\Transmitter\\": "vendor/pear2/net_transmitter/src/",
"PEAR2\\Cache\\SHM": "vendor/pear2/cache_shm/src/",
"PEAR2\\Console\\Color": "vendor/pear2/console_color/src/"
}
},
"bin": ["scripts/roscon.php"],
"minimum-stability": "dev"
}