forked from studiofrenetic/laravel-formatter
-
Notifications
You must be signed in to change notification settings - Fork 95
/
composer.json
43 lines (43 loc) · 1.21 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": "soapbox/laravel-formatter",
"type": "library",
"description": "A formatting library that converts data output between XML, CSV, JSON, TXT, YAML and a few others.",
"keywords": ["laravel", "formatter", "data", "convert", "csv", "xml", "yaml"],
"homepage": "http://github.com/SoapBox/laravel-formatter",
"license": "MIT",
"version": "3.1.1",
"authors": [
{
"name": "Graham McCarthy",
"email": "[email protected]",
"homepage": "http://grahammccarthy.com"
},
{
"name": "Jaspaul Bola",
"email": "[email protected]",
"homepage": "http://jaspaulbola.com"
}
],
"require": {
"php": "^7.2",
"league/csv": "~9.0",
"mustangostang/spyc": "~0.6",
"illuminate/support": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "~8.0"
},
"autoload": {
"psr-4": {
"SoapBox\\Formatter\\": "src/"
}
},
"extra": {
"laravel": {
"aliases": {
"Formatter": "SoapBox\\Formatter"
}
}
},
"minimum-stability": "stable"
}