-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
48 lines (48 loc) · 1.25 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
{
"name": "spatie/twitter-streaming-api",
"description": "Easily work with the Twitter Streaming API",
"keywords": [
"spatie",
"twitter-streaming-api"
],
"homepage": "https://github.com/spatie/twitter-streaming-api",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"redwebcreation/twitter-stream-api": "^0.2"
},
"require-dev": {
"phpunit/phpunit": "^9",
"spatie/laravel-ray": "^1",
"friendsofphp/php-cs-fixer": "^3.0",
"vimeo/psalm": "^5"
},
"autoload": {
"psr-4": {
"Spatie\\TwitterStreamingApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\TwitterStreamingApi\\Test\\": "tests"
}
},
"scripts": {
"lint": "./vendor/bin/php-cs-fixer fix",
"psalm": "./vendor/bin/psalm",
"test": "./vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}