-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.33 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.33 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
{
"name": "axsag/opentweet",
"description": "PHP 8+ SDK for the OpenTweet API — schedule, publish and analyse X/Twitter posts.",
"type": "library",
"license": "MIT",
"keywords": ["opentweet", "twitter", "x", "sdk", "api", "scheduling"],
"homepage": "https://github.com/Axsag/opentweet-php",
"require": {
"php": "^8.1",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1|^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"pestphp/pest": "^2.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7"
},
"suggest": {
"guzzlehttp/guzzle": "A popular PSR-18 HTTP client (^7.0)",
"symfony/http-client": "Alternative PSR-18 HTTP client"
},
"autoload": {
"psr-4": {
"OpenTweet\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenTweet\\Tests\\": "tests/"
}
},
"scripts": {
"test": "pest",
"analyse": "phpstan analyse src --level=8",
"cs": "phpcs --standard=PSR12 src"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}