-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
34 lines (34 loc) · 960 Bytes
/
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
{
"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": "3.0.4"
},
"require-dev": {
"phpunit/phpunit": "^8",
"composer/semver": "^3"
},
"autoload": {
"psr-4": { "telesign\\enterprise\\sdk\\": "src/" }
},
"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/"
}
}