-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.25 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
{
"name": "yate-wireless/api",
"description": "Yate core products API wrapper for PHP",
"type": "library",
"homepage": "https://github.com/yate-wireless/api",
"keywords": ["yatebts", "api"],
"license": "MIT",
"authors": [
{
"name": "Alexey Pavlyuts",
"email": "alexey@pavlyuts.ru"
}
],
"support": {
"email": "alexey@pavlyuts.ru",
"issues": "https://github.com/yate-wireless/api/issues",
"wiki": "https://github.com/yate-wireless/api/wiki",
"source": "https://github.com/yate-wireless/api",
"docs": "https://yate-wireless.github.io/api/"
},
"require": {
"php": "^7.4|^8.0|^8.1|^8.2|^8.3",
"psr/http-message-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-client-implementation": "^1.0"
},
"autoload": {
"psr-4": {
"Yate\\Api\\": "Yate/Api"
}
},
"require-dev": {
"guzzlehttp/guzzle": "^7.2",
"phpunit/phpunit": "^9.6"
},
"autoload-dev": {
"psr-4": {
"YateApiTest\\": "Test"
}
},
"scripts": {
"test": "vendor/bin/phpunit --configuration Test/configuration.xml Test --coverage-text"
}
}