forked from hpatoio/bitly-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 821 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": "hpatoio/bitly-api",
"type": "library",
"description": "PHP Library based on Guzzle to consume Bit.ly API",
"keywords": ["Bitly", "api", "guzzle", "behat"],
"homepage": "http://www.iliveinperego.com/",
"license": "CC-BY-SA-3.0",
"authors": [
{
"name": "Simone Fumagalli",
"email": "[email protected]"
}
],
"require": {
"guzzle/guzzle": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"behat/behat": "~2.0",
"behat/mink": "~1.5"
},
"config": {
"bin-dir": "bin/"
},
"suggest" : {
"hpatoio/bitly-bundle" : "for integration with Symfony2 web framework"
},
"autoload": {
"psr-4": {
"Hpatoio\\Bitly\\": "src/"
}
}
}