-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 1.92 KB
/
Copy pathcomposer.json
File metadata and controls
81 lines (81 loc) · 1.92 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
81
{
"name": "padosoft/eval-harness-ui",
"description": "Admin dashboard UI package for padosoft/eval-harness",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/padosoft/eval-harness-ui",
"keywords": [
"laravel",
"admin",
"eval",
"dashboard",
"package",
"react",
"vite"
],
"authors": [
{
"name": "Padosoft"
}
],
"require": {
"php": "^8.3",
"illuminate/support": "^11.0|^12.0|^13.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"orchestra/testbench": "^9.4|^10.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"phpstan/phpstan": "^2.1",
"laravel/pint": "^1.18",
"nunomaduro/collision": "^8.0"
},
"autoload": {
"psr-4": {
"Padosoft\\EvalHarnessUi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Padosoft\\EvalHarnessUi\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Padosoft\\EvalHarnessUi\\EvalHarnessUiServiceProvider"
],
"aliases": {}
}
},
"scripts": {
"validate": "composer validate --strict --no-check-publish",
"format": "vendor/bin/pint",
"format:test": "vendor/bin/pint --test",
"analyse": "vendor/bin/phpstan analyse --no-progress --memory-limit=-1",
"test": "vendor/bin/pest",
"test:unit": "vendor/bin/pest tests/Unit",
"test:feature": "vendor/bin/pest tests/Feature",
"test:all": "composer validate && composer analyse && composer test",
"check": "composer test"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.3.0"
},
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"support": {
"issues": "https://github.com/padosoft/eval-harness-ui/issues",
"source": "https://github.com/padosoft/eval-harness-ui"
}
}