-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
39 lines (39 loc) · 951 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
38
39
{
"name": "bogcon/yahoo-messenger-api",
"description": "A PHP client for Yahoo! Messenger API",
"type": "library",
"keywords": [
"yahoo",
"messenger",
"api",
"messaging"
],
"homepage": "https://github.com/bogcon/yahoo-messenger-api",
"license": "New BSD License",
"authors": [
{
"name": "Bogdan Constantinescu",
"email": "{first3LettersFromFirstname}_{first3LettersFromLastname}@yahoo.com"
}
],
"require": {
"php": ">=5.3.3",
"ext-curl": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/PHPUnit": "~4.1",
"phpunit/phpcov": "~2.0",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"BogCon\\YahooMessengerApi\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}