-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
33 lines (33 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
{
"name" : "myra-security-gmbh/web-api",
"description" : "Php implementation of the myracloud.com api",
"keywords" : [
"myracloud",
"api"
],
"homepage" : "https://myrasecurity.com",
"type" : "library",
"license" : "MIT",
"minimum-stability": "stable",
"require" : {
"php" : ">=7.1.0",
"ext-json" : "*",
"guzzlehttp/guzzle": "^6.0",
"symfony/console" : "^3.0",
"s1lentium/iptools": "*",
"symfony/yaml" : "*"
},
"require-dev" : {
"phpunit/phpunit": "^7.5"
},
"autoload" : {
"psr-4": {
"Myracloud\\WebApi\\": "src/"
}
},
"autoload-dev" : {
"psr-4": {
"Myracloud\\Tests\\": "tests/"
}
}
}