-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.85 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.85 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
{
"name": "worksome/data-export",
"description": "Worksome's data export package",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.4",
"guzzlehttp/guzzle": "^7.8",
"illuminate/container": "^12.0 || ^13.0",
"illuminate/contracts": "^12.0 || ^13.0",
"illuminate/database": "^12.0 || ^13.0",
"illuminate/support": "^12.0 || ^13.0",
"nesbot/carbon": "^3.0",
"nuwave/lighthouse": "^6.54",
"phpoffice/phpspreadsheet": "^1.30 || ^2.3.8 || ^5.4",
"symfony/dependency-injection": "^7.0 || ^8.0",
"worksome/graphql-helpers": "^0.1.18"
},
"require-dev": {
"larastan/larastan": "^3.9",
"nunomaduro/collision": "^7.10 || ^8.1.1",
"orchestra/testbench": "^10.8 || ^11.0",
"pestphp/pest": "^4.4",
"pestphp/pest-plugin-laravel": "^4.1",
"worksome/coding-style": "^3.4"
},
"autoload": {
"psr-4": {
"Worksome\\DataExport\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Worksome\\DataExport\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"worksome/coding-style": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"lint": "vendor/bin/ecs --fix",
"test:unit": "vendor/bin/pest",
"test:types": "vendor/bin/phpstan analyse",
"test:coverage": "vendor/bin/pest --coverage --min=95",
"test:style": "vendor/bin/ecs",
"test": [
"@test:style",
"@test:types",
"@test:unit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}