-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
41 lines (41 loc) · 1.03 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
{
"name": "ubnt/ucrm-plugin-sdk",
"description": "UCRM plugin SDK",
"keywords": ["ucrm", "sdk"],
"type": "library",
"homepage": "https://github.com/Ubiquiti-App/UCRM-Plugin-SDK",
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.8",
"symfony/filesystem": "^6.3"
},
"autoload": {
"psr-4": {
"Ubnt\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"eloquent/phony-phpunit": "^7.1",
"phpstan/phpstan": "^1.10",
"eloquent/phpstan-phony": "^0.8.0",
"phpstan/phpstan-strict-rules": "^1.2",
"symplify/easy-coding-standard": "^10.2",
"ocramius/package-versions": "^2.7",
"php-coveralls/php-coveralls": "^2.6"
},
"suggest": {
"ext-zip": "Needed for pack-plugin script."
},
"bin": [
"bin/pack-plugin"
]
}