-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"authors": [
{
"email": "[email protected]",
"name": "Lennart Hengstmengel"
}
],
"autoload": {
"psr-4": {
"Vazaha\\Mastodon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Tools\\": "tools/src"
}
},
"description": "A fully typed and feature complete Mastodon API client for PHP",
"license": "MIT",
"name": "vazaha-nl/mastodon-api-client",
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^7.7",
"illuminate/support": "^9 || ^10 || ^11",
"nesbot/carbon": "^2.68 || ^3.0",
"illuminate/collections": "^9 || ^10 || ^11"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3.7",
"ergebnis/php-cs-fixer-config": "^5.12 || ^6.0",
"twig/twig": "^3.7"
},
"scripts": {
"check-style": [
"php-cs-fixer fix --diff --dry-run"
],
"fix-style": [
"php-cs-fixer fix"
],
"test": [
"vendor/bin/phpunit --no-coverage --testsuite tests"
],
"integration-test": [
"vendor/bin/phpunit --no-coverage --testsuite integration_tests"
],
"analyse": [
"vendor/bin/phpstan analyse -c phpstan.neon"
]
},
"type": "library",
"config": {
},
"extra": {
"laravel": {
"providers": [
"Vazaha\\Mastodon\\ServiceProvider"
]
}
}
}