-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.74 KB
/
Copy pathcomposer.json
File metadata and controls
66 lines (66 loc) · 1.74 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "twexapi/x-api-scraper",
"description": "Twitter API alternative PHP SDK for tweet search, follower scraping, timelines, DMs, communities, lists, trending, and X automation. Not affiliated with X Corp.",
"type": "library",
"keywords": [
"twitter-api",
"twitter-scraper",
"tweet-search",
"twexapi",
"sdk",
"php"
],
"homepage": "https://github.com/twexapi-dev/x-api-scraper-php",
"authors": [
{
"name": "TwexAPI",
"homepage": "https://twexapi.io"
}
],
"support": {
"docs": "https://docs.twexapi.io",
"issues": "https://github.com/twexapi-dev/x-api-scraper-php/issues",
"source": "https://github.com/twexapi-dev/x-api-scraper-php"
},
"autoload": {
"psr-4": {
"XapiScraper\\": "src/"
}
},
"license": "MIT",
"require": {
"php": ">=8.2",
"galbar/jsonpath": ">=3.0",
"guzzlehttp/guzzle": "^7.15.2",
"speakeasy/serializer": "^4.0.3",
"brick/date-time": ">=0.7.0",
"phpdocumentor/type-resolver": ">=1.8",
"brick/math": ">=0.12.1"
},
"require-dev": {
"laravel/pint": "1.29.0",
"phpstan/phpstan": "2.1.44",
"phpunit/phpunit": "^11.5.50 || ^12.5.8 || >=13.0.0",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true,
"process-timeout": 60
},
"scripts": {
"test": [
"./vendor/bin/phpunit --testdox --display-warnings --colors=always"
],
"stan": [
"./vendor/bin/phpstan analyse --memory-limit=2g --error-format=table"
]
},
"script-descriptions": {
"test": "Run PhpUnit test scripts.",
"stan": "Run PhpStan static analysis."
}
}