forked from fennb/phirehose
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
51 lines (51 loc) · 1.32 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
{
"name": "redwebcreation/twitter-stream-api",
"description": "Consume the Twitter Stream API in real-time.",
"keywords": ["phirehose", "php", "twitter", "streaming", "api"],
"type": "library",
"homepage": "https://github.com/redwebcreation/phirehose",
"license": "MIT",
"authors": [
{
"name": "Félix Dorn",
"email": "[email protected]",
"homepage": "https://redwebcreation.fr/"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.3",
"psr/http-message": "^1.0.1|^2.0"
},
"autoload": {
"psr-4": {
"Felix\\TwitterStream\\": "src/"
}
},
"scripts": {
"lint": "php-cs-fixer fix -v",
"test:unit": "pest",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
],
"gen:doc": "php scripts/generate_phpdoc.php > src/_RuleBuilder.php",
"gen:tests": "php scripts/generate_tests.php > tests/GeneratedTests.php"
},
"require-dev": {
"symfony/var-dumper": "^6.1",
"pestphp/pest": "^1.1",
"friendsofphp/php-cs-fixer": "^3",
"phpstan/phpstan": "^1",
"vlucas/phpdotenv": "^5.3",
"pestphp/pest-plugin-mock": "^1.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}