-
-
Notifications
You must be signed in to change notification settings - Fork 291
/
composer.json
67 lines (67 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "atymic/twitter",
"description": "Twitter API for PHP & Laravel",
"keywords": ["twitter", "laravel"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "atymic",
"email": "atymicq@gmail.com",
"homepage": "https://atymic.dev"
},
{
"name": "reliq",
"email": "reliq@reliqarts.com",
"homepage": "https://iamreliq.com"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"guzzlehttp/guzzle": "^6.4 || ^7.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"nesbot/carbon": "^1.2 || ^2.26",
"guzzlehttp/oauth-subscriber": "^0.6",
"php-di/php-di": "^7.0.2",
"kamermans/guzzle-oauth2-subscriber": "^1.0",
"phpoption/phpoption": "^1.7",
"vlucas/phpdotenv": "*",
"react/http": "^1.2",
"league/oauth2-client": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^8.3 || ^9.1 || ^10.0",
"orchestra/testbench": "3.8 - 7",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Atymic\\Twitter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atymic\\Twitter\\Tests\\": "tests"
},
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
]
},
"scripts": {
"test": "phpunit",
"test:ci": "phpunit --verbose --coverage-clover=coverage.xml"
},
"extra": {
"laravel": {
"providers": [
"Atymic\\Twitter\\ServiceProvider\\LaravelServiceProvider"
],
"aliases": {
"Twitter": "Atymic\\Twitter\\Facade\\Twitter"
}
}
},
"minimum-stability": "stable"
}