-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
34 lines (34 loc) · 1.04 KB
/
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": "hpatoio/bitly-api",
"type": "library",
"description": "PHP Library based on Guzzle to consume Bit.ly API | This library is deprecated you might use https://github.com/phplicengine/bitly",
"keywords": ["Bitly", "api", "guzzle", "behat"],
"homepage": "http://www.iliveinperego.com/",
"license": "CC-BY-SA-3.0",
"authors": [
{
"name": "Simone Fumagalli",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"behat/behat": "~2.0",
"behat/mink": "~1.5"
},
"config": {
"bin-dir": "bin/"
},
"suggest" : {
"hpatoio/bitly-bundle" : "for integration with Symfony2 web framework",
"phplicengine/bitly": "The package you have installed, hpatoio/bitly-api, is not maintained anymore. You might use https://github.com/phplicengine/bitly"
},
"autoload": {
"psr-4": {
"Hpatoio\\Bitly\\": "src/"
}
}
}