-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
43 lines (43 loc) · 1.15 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
{
"name": "colorfield/mastodon-api",
"description": "PHP wrapper for Mastodon API",
"type": "library",
"keywords": [
"Mastodon",
"PHP",
"API",
"Rest"
],
"homepage": "https://github.com/colorfield/mastodon-api-php",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "Apache-2.0",
"authors": [
{
"name": "Christophe Jossart",
"homepage": "https://colorfield.dev"
}
],
"require": {
"php": ">=8.1.0",
"guzzlehttp/guzzle": "^7.0.0",
"vlucas/phpdotenv": "^5.5"
},
"autoload": {
"psr-4": {
"Colorfield\\Mastodon\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.2.0",
"squizlabs/php_codesniffer": "^3.7",
"spatie/ray": "^1.37",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.22",
"vimeo/psalm": "^5.13",
"rector/rector": "^0.17.6"
},
"scripts": {
"test-public": "./vendor/bin/phpunit --configuration phpunit.xml --filter MastodonApiPublic --test-suffix MastodonApiPublic.php ./tests"
}
}