-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcomposer.json
50 lines (50 loc) · 1.59 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
{
"name": "noweh/twitter-api-v2-php",
"description": "This library provides methods for sending messages to Twitter and receiving statuses.",
"keywords": ["twitter", "PHP", "API"],
"minimum-stability": "stable",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Julien Schmitt",
"email": "[email protected]"
}, {
"name": "Martin Zeitler",
"homepage": "https://github.com/syslogic"
}
],
"require": {
"ext-curl": "*",
"ext-json": "*",
"php": ">=7.4",
"guzzlehttp/guzzle": "^7.5.0",
"guzzlehttp/oauth-subscriber": "^0.6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.3",
"phpunit/php-code-coverage": "^9.2.24",
"vlucas/phpdotenv": "^v5.5.0",
"phpstan/phpstan": "^1.9.14"
},
"scripts": {
"test": "vendor/bin/phpunit --bootstrap vendor/autoload.php --configuration phpunit.xml --testsuite main",
"coverage_linux": "export XDEBUG_MODE=coverage && vendor/bin/phpunit --bootstrap vendor/autoload.php --coverage-html --configuration coverage.xml --testsuite main",
"coverage_windows": "setlocal xdebug.mode=coverage && %cd%/vendor/bin/phpunit --bootstrap vendor/autoload.php --configuration coverage.xml --testsuite main"
},
"scripts-descriptions": {
"test": "Run PHPUnit tests",
"coverage_linux": "Run PHPUnit tests with code coverage on Linux",
"coverage_windows": "Run PHPUnit tests with code coverage on Windows"
},
"autoload": {
"psr-4": {
"Noweh\\TwitterApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Noweh\\TwitterApi\\Test\\": "test/"
}
}
}