-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
57 lines (57 loc) · 1.57 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
{
"authors": [
{
"email": "[email protected]",
"homepage": "https://maicol07.it",
"name": "Maicol Battistini"
},
{
"email": "[email protected]",
"homepage": "http://hyn.io",
"name": "Daniël Klabbers"
}
],
"autoload": {
"psr-4": {
"Maicol07\\Flarum\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Maicol07\\Flarum\\Api\\Tests\\": "tests"
}
},
"description": "Standalone package for calling the API of a Flarum installation.",
"keywords": [
"api",
"flarum",
"flagrow",
"maicol07",
"client"
],
"license": "MIT",
"name": "maicol07/flarum-api-client",
"require": {
"php": ">=7.3|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7",
"illuminate/cache": ">=6",
"illuminate/support": ">=6"
},
"require-dev": {
"phpunit/phpunit": "^9",
"roave/security-advisories": "dev-latest",
"vlucas/phpdotenv": "^5",
"phpoption/phpoption": "^1"
},
"suggest": {
"vlucas/phpdotenv": "Required for running tests with Laravel 6 (^3.3) or Laravel 7 (^4). If you use Laravel 8 this package is already installed"
},
"support": {
"issues": "https://github.com/maicol07/flarum-api-client/issues",
"source": "https://github.com/maicol07/flarum-api-client"
},
"scripts": {
"test": "phpunit --configuration phpunit.xml tests"
}
}