-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
46 lines (46 loc) · 1.16 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
{
"name": "rezozero/mixedfeed",
"type": "library",
"description": "A PHP library to get social networks feeds and merge them",
"keywords": [
"feed",
"social",
"social networks",
"aggregator",
"rezo zero"
],
"license": "MIT",
"authors": [
{
"name": "Ambroise Maupate",
"email": "[email protected]",
"homepage": "https://www.rezo-zero.com",
"role": "Lead developer"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"abraham/twitteroauth": "^3.0",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/promises": "^1.5",
"guzzlehttp/psr7": "^2.1",
"psr/cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"jms/serializer": "^2.1 || ^3.5",
"phpstan/phpstan": "^1.0",
"squizlabs/php_codesniffer": "^3.3",
"symfony/cache": "^5.0",
"symfony/dotenv": "^5.0",
"symfony/stopwatch": "^5.0"
},
"autoload": {
"psr-4": {
"RZ\\MixedFeed\\": "src/"
}
},
"scripts": {
"analyze": "vendor/bin/phpstan"
}
}