-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.22 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
{
"name": "fundevogel/php-mastodon",
"description": "A small PHP library for interacting with Mastodon's REST API.",
"type": "library",
"license": "GPL-3.0",
"version": "0.6.0",
"keywords": ["mastodon", "oauth", "api", "rest", "social"],
"homepage": "https://fundevogel.de",
"scripts": {
"cs-dry": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"test": "phpunit"
},
"authors": [
{
"name": "Kinder- und Jugendbuchhandlung Fundevogel",
"email": "[email protected]",
"homepage": "https://fundevogel.de",
"role": "Maintainer"
},
{
"name": "Martin Folkers",
"email": "[email protected]",
"homepage": "https://twobrain.io",
"role": "Developer"
}
],
"require": {
"guzzlehttp/guzzle": "^7.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpunit/phpunit": "^8.1"
},
"autoload": {
"psr-4": {
"Fundevogel\\Mastodon\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Fundevogel\\Mastodon\\Tests\\": "tests/"
}
}
}