-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
107 lines (107 loc) · 2.79 KB
/
Copy pathcomposer.json
File metadata and controls
107 lines (107 loc) · 2.79 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"$schema": "https://getcomposer.org/schema.json",
"archive": {
"exclude": [
"/.env",
"/.env.*",
"/.git",
"/.github",
"/.gitattributes",
"/.gitignore",
"/.gitleaks.toml",
"/.php-cs-fixer.cache",
"/.php-cs-fixer.dist.php",
"/.phpactor.json",
"/.phpunit.cache",
"/.release-please-manifest.json",
"/.stats.yml",
"/auth.json",
"/docs",
"/phpstan.dist.neon",
"/phpunit.xml.dist",
"/playground",
"/release-please-config.json",
"/scripts",
"/tests",
"/vendor"
]
},
"license": "Apache-2.0",
"autoload": {
"files": [
"src/Version.php"
],
"psr-4": {
"XTwitterScraper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"homepage": "https://xquik.com",
"name": "Xquik"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": false,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.3"
},
"preferred-install": "dist",
"sort-packages": true
},
"description": "PHP SDK for Twitter search, followers, webhooks & X automation through Xquik. Not affiliated with X Corp.",
"homepage": "https://docs.xquik.com/sdks/php",
"keywords": [
"api-client",
"automation",
"follower-export",
"media-download",
"profile-tweets",
"sdk",
"tweet-search",
"twitter-api",
"webhooks",
"x-api"
],
"name": "xquik/x-twitter-scraper",
"support": {
"docs": "https://docs.xquik.com/sdks/php",
"issues": "https://github.com/Xquik-dev/x-twitter-scraper-php/issues",
"source": "https://github.com/Xquik-dev/x-twitter-scraper-php"
},
"require": {
"php": "^8.1",
"php-http/discovery": "^1",
"psr/http-client": "^1",
"psr/http-client-implementation": "^1",
"psr/http-factory-implementation": "^1",
"psr/http-message": "^1|^2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"guzzlehttp/guzzle": "^8",
"pestphp/pest": "^4",
"php-http/mock-client": "^1",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^2",
"phpstan/phpstan-phpunit": "^2",
"phpunit/phpcov": "11.0.4",
"phpunit/phpunit": "^12"
},
"scripts": {
"build:docs": "curl --etag-save ./vendor/ag.etags --etag-compare ./vendor/ag.etags --create-dirs --remote-name --output-dir ./vendor/bin --no-progress-meter -- https://github.com/ApiGen/ApiGen/releases/latest/download/apigen.phar && php ./vendor/bin/apigen.phar --output docs -- src",
"check": "./scripts/lint && ./scripts/coverage && ./scripts/audit && ./scripts/check-reproducible",
"coverage": "./scripts/coverage",
"lint": "./scripts/lint",
"test": "./scripts/test"
}
}