-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.15 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
{
"name": "forward-force/televoips",
"description": "PHP Wrapper around TeleVoIPs API",
"type": "library",
"keywords": [
"forwardforce",
"televoips"
],
"require": {
"php": "^7.4",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.1@dev",
"phpmd/phpmd": "^2.9.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5@dev",
"squizlabs/php_codesniffer": "^3.0@dev",
"vimeo/psalm": "^4.0@dev"
},
"autoload": {
"psr-4": {
"ForwardForce\\TeleVoIPs\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ForwardForce\\TeleVoIPs\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm -c psalm.xml --show-info=true",
"test": "vendor/bin/phpunit --colors=always",
"phpcs": "vendor/bin/phpcs src/",
"phpmd": "vendor/bin/phpmd src/ text phpmd.xml"
},
"license": "MIT",
"authors": [
{
"name": "Teodor Talov",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}