-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.54 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
51
52
53
{
"name": "metrixio/twitter",
"type": "project",
"license": "MIT",
"description": "This tool lets you easily gather data about tweets, retweets, likes, followers, and more from Twitter. You can use it to track the performance of your own account or gather data for research or analysis. It works with Prometheus and Grafana.",
"homepage": "https://github.com/metrixio/twitter",
"support": {
"issues": "https://github.com/metrixio/twitter/issues",
"source": "https://github.com/metrixio/twitter"
},
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"abraham/twitteroauth": "^4.0",
"nesbot/carbon": "^2.63",
"spiral/framework": "^3.5",
"spiral/roadrunner-bridge": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"spiral/testing": "^2.2",
"symfony/var-dumper": "^6.1",
"vimeo/psalm": "dev-master"
},
"autoload": {
"psr-4": {
"App\\": "app/src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"publish-cmd": "php app.php publish"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": true
}
},
"scripts": {
"post-create-project-cmd": [
"php -r \"copy('.env.sample', '.env');\"",
"php app.php configure -vv",
"rr get-binary"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}