-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 872 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
35
36
37
{
"name": "enricodias/smsdev",
"type": "library",
"license": "MIT",
"description": "Send and receive SMS using SmsDev.com.br",
"keywords": ["smsdev", "sms"],
"authors": [
{
"name": "Enrico Dias",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"guzzlehttp/guzzle": "^6.4 || ^7.5"
},
"suggest": {
"giggsey/libphonenumber-for-php": "Allows phone number verification"
},
"autoload": {
"psr-4": {
"enricodias\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"enricodias\\SmsDev\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^9.0",
"scrutinizer/ocular": "1.7.*"
}
}