-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1.05 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
{
"name": "zonuexe/mastodon-api",
"description": "A PHP interface for Mastodon.",
"license": "GPL-3.0",
"require": {
"guzzlehttp/guzzle": "^6.2",
"zonuexe/objectsystem": "^0.6.0",
"respect/validation": "^1.1"
},
"require-dev": {
"vlucas/phpdotenv": "^2.4",
"phpmd/phpmd": "^2.6",
"paragonie/random_compat": "^2.0",
"symfony/polyfill-php70": "^1.3",
"symfony/var-dumper": "^3.2",
"filp/whoops": "^2.1",
"zonuexe/simple-routing": "^0.5.3",
"monolog/monolog": "^1.22",
"php5friends/phpunit48": "^4.8"
},
"autoload": {
"files": ["src/functions.php", "src/Entity/helpers.php"],
"psr-4": {
"Baguette\\Mastodon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Baguette\\Mastodon\\": "tests/"
}
},
"suggest": {
"vlucas/phpdotenv": "Load .env format config file"
},
"scripts": {
"phpmd": "phpmd src/ text phpmd.xml",
"test": "phpunit"
}
}