-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 928 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
{
"name": "th3mouk/free-mobile-sms-cli",
"type": "library",
"description": "PHP Client using Free Mobile SMS Notification API to send free messages on your mobile phone.",
"keywords": ["FreeMobile", "SMS", "Notification", "Mobile", "Phone", "Domotic"],
"license": "MIT",
"authors": [
{
"name": "Jeremy Marodon",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^5.6 || ^7.0",
"guzzlehttp/guzzle": "^6.2.1"
},
"require-dev": {
"phpunit/phpunit": "^5.4.3",
"sllh/php-cs-fixer-styleci-bridge": "^2.1"
},
"autoload": {
"psr-4": {
"Th3Mouk\\FreeMobileSMSNotif\\": "src/",
"Th3Mouk\\FreeMobileSMSNotif\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}