-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 1.78 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 1.78 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "audunru/export-response",
"description": "Export Laravel JSON to responses to other formats, e.g. CSV",
"keywords": [
"export",
"laravel",
"json",
"csv"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Audun Rundberg",
"email": "audun@rundberg.no"
}
],
"require": {
"php": "^8.3",
"laravel/framework": "^13.0",
"spatie/laravel-package-tools": "^1.9",
"timacdonald/has-parameters": "dev-l13-compatibility"
},
"require-dev": {
"laravel/pint": "^1.0",
"orchestra/testbench": "^11.0",
"php-coveralls/php-coveralls": "^2.2",
"phpmd/phpmd": "^2.10",
"phpunit/phpunit": "^12.0",
"roave/security-advisories": "dev-latest",
"spatie/array-to-xml": "^3.1",
"spatie/simple-excel": "^3.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/laravel-shift/has-parameters.git"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"audunru\\ExportResponse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"audunru\\ExportResponse\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"audunru\\ExportResponse\\ExportServiceProvider"
]
}
},
"scripts": {
"test": [
"php ./vendor/bin/phpunit"
],
"test-with-coverage": [
"XDEBUG_MODE=coverage php ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml"
],
"fix": [
"./vendor/bin/pint"
],
"verify": [
"./vendor/bin/pint --test",
"php ./vendor/bin/phpmd config,src,tests ansi phpmd-ruleset.xml",
"php ./vendor/bin/phpunit"
]
}
}