forked from Soapbox/laravel-formatter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.49 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
{
"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|^8.0",
"league/csv": "~9.0",
"mustangostang/spyc": "~0.6",
"illuminate/support": "^6.0|^7.0|^8.0"
},
"require-dev": {
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"SoapBox\\Formatter\\": "src/"
}
},
"scripts": {
"sniffer:php8": "phpcs -p ./src --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.0"
},
"extra": {
"laravel": {
"aliases": {
"Formatter": "SoapBox\\Formatter"
}
}
},
"minimum-stability": "stable"
}