-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcomposer.json
40 lines (40 loc) · 1.08 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
{
"name": "telesign/telesign",
"description": "TeleSign SDK",
"type": "library",
"keywords": [
"telesign", "sms", "voice", "mobile", "authentication", "identity", "messaging"
],
"license": "MIT",
"homepage": "https://github.com/telesign/php_telesign",
"authors": [
{
"name": "TeleSign Corp.",
"email": "[email protected]",
"homepage": "https://www.telesign.com"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"ext-mbstring": "*",
"ext-xml": "*",
"guzzlehttp/guzzle": "^7.0",
"ramsey/uuid": "^4",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"composer/semver": "^3"
},
"autoload": {
"psr-4": { "telesign\\sdk\\": "src/" },
"files": [ "src/util.php", "src/version/version.php" ]
},
"autoload-dev": {
"psr-4": { "telesign\\sdk\\": "test/", "telesign\\sdk\\version\\": "./" }
},
"scripts": {
"test": "phpunit --bootstrap ./vendor/autoload.php test/ --coverage-clover coverage.xml --whitelist src/",
"bump-version": "telesign\\sdk\\version\\Version::bumpVersion"
}
}