-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.03 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.03 KB
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
48
{
"name": "telesign/telesignenterprise",
"description": "Telesign Full-service PHP SDK",
"type": "library",
"keywords": [
"telesign",
"sms",
"voice",
"mobile",
"authentication",
"identity",
"messaging"
],
"license": "MIT",
"homepage": "https://github.com/telesign/php_telesign_enterprise",
"authors": [
{
"name": "Telesign Corp.",
"email": "support@telesign.com",
"homepage": "https://www.telesign.com"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"telesign/telesign": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"composer/semver": "^3"
},
"autoload": {
"psr-4": {
"telesign\\enterprise\\sdk\\": "src/"
},
"classmap": [
"src/config.php"
]
},
"autoload-dev": {
"psr-4": {
"telesign\\enterprise\\sdk\\": "test/",
"telesign\\sdk\\": "vendor/telesign/telesign/test/"
}
},
"scripts": {
"test": "phpunit --bootstrap ./vendor/autoload.php test/ --coverage-clover coverage.xml --whitelist src/"
}
}