-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 867 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": "alexeevdv/yii2-sms",
"description": "This extension allows SMS sending via different SMS providers",
"type": "yii2-extension",
"require": {
"yiisoft/yii2": "^2.0",
"yiisoft/yii2-httpclient": "^2.0",
"alexeevdv/php-sms-contracts": "^0.2.0",
"alexeevdv/php-sms-smsru": "^0.1.0",
"guzzlehttp/guzzle": "^6.5"
},
"require-dev": {
"yiisoft/yii2-coding-standards": "^2.0",
"codeception/codeception": "^2.3"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"license": "MIT",
"authors": [
{
"name": "Dmitry Alekseev",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"alexeevdv\\sms\\": "src"
}
}
}