-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 1.69 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
64
{
"name": "ejetar/laravel-api-response-formatter",
"description": "A simple and fast \uD83D\uDE80 library that displays responses in various formats, according to the Accept header, entered by the user. The library currently displays responses in JSON, XML, CSV, and YAML.\n",
"homepage": "https://ejetar.com/projects/api-response-formatter",
"type": "library",
"license": "MIT",
"version": "1.0.0",
"authors": [
{
"name": "Guilherme Almeida Girardi",
"email": "guilhermeagirardi@gmail.com",
"homepage": "https://guilhermegirardi.com",
"role": "Developer"
}
],
"keywords": [
"php",
"api",
"accept header",
"format",
"formatter",
"output",
"data",
"convert",
"response",
"xml",
"json",
"csv",
"yaml",
"laravel"
],
"require": {
"symfony/serializer": "^5.1",
"symfony/yaml": "^5.1",
"laravel/framework": "^7.17"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"symfony/var-dumper": "~5.0",
"orchestra/testbench": "~3.4|~3.5|~3.6|~3.7|~3.8|~4.0|~5.0"
},
"autoload": {
"psr-4": {
"Ejetar\\ApiResponseFormatter\\": "src/app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": "vendor\\bin\\phpunit"
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Ejetar\\ApiResponseFormatter\\Providers\\AppServiceProvider"
]
}
}
}