-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.23 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "remi-san/twitter",
"description" : "A lib to manage twitter objects.",
"license": "MIT",
"keywords": [
"Twitter",
"API"
],
"authors": [
{
"name": "Rémi San",
"email": "[email protected]",
"homepage": "http://remi-san.github.io/",
"role": "Developer"
}
],
"require": {
"beberlei/assert": "^2.6",
"psr/log": "^1.0"
},
"require-dev": {
"jublonet/codebird-php": "~3.0",
"phpunit/phpunit": "~4.5",
"Mockery/Mockery": "~0.9",
"friendsofphp/php-cs-fixer": "^1.10",
"squizlabs/php_codesniffer": "~2.0",
"doctrine/orm": "~2.4",
"fzaninotto/faker": "^1.6"
},
"suggest": {
"doctrine/orm": "Use the twitter types in doctrine",
"jublonet/codebird-php": "To get the codebird implementation to access the twitter API"
},
"autoload": {
"psr-4": {
"Twitter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Twitter\\Test\\" : "tests/unit/"
}
},
"bin": [ "bin/twitter" ],
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}