forked from HSPDev/Huawei-E5180-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.02 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
{
"name": "hsp-dev/huawei-api",
"type": "library",
"description": "A barebones API to interact with the Huawei E5180 router",
"homepage": "https://github.com/HSPDev/Huawei-E5180-API",
"keywords": ["api","E5180"],
"license": "MIT",
"authors": [
{
"name": "Henrik Sylvester Pedersen",
"email": "[email protected]",
"homepage": "http://blog.hsp.dk",
"role": "Developer"
}
],
"autoload": {
"psr-0" : {
"HSPDev\\HuaweiApi" : "src"
}
},
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-xml": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^3.61",
"ergebnis/composer-normalize": "^2.43",
"ergebnis/php-cs-fixer-config": "^6.34",
"phpstan/phpstan-phpunit": "2.0.x-dev"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}