-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 924 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
40
41
{
"name": "batopa/chirp",
"description": "Cache for Twitter using MongoDB",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/batopa/chirp",
"keywords": [
"Twitter",
"MongoDB",
"cache",
"API"
],
"authors": [
{
"name": "Alberto Pagliarini",
"homepage": "https://github.com/batopa"
}
],
"require": {
"php": ">=5.6",
"ext-mongodb": "*",
"mongodb/mongodb": "^1.0",
"abraham/twitteroauth": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^2.5.1"
},
"autoload": {
"psr-4": {
"Bato\\Chirp\\": "src/"
}
},
"autoload-dev": {
"psr4": {
"Bato\\Chirp\\Test\\": "tests"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}