-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 1.99 KB
/
Copy pathcomposer.json
File metadata and controls
78 lines (78 loc) · 1.99 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
{
"name": "colorlibhq/adminlte-laravel",
"description": "Official AdminLTE 4 integration for Laravel — Bootstrap 5.3, vanilla JS, Vite-ready.",
"keywords": [
"laravel",
"adminlte",
"admin",
"dashboard",
"bootstrap",
"bootstrap5",
"template",
"blade",
"vite"
],
"homepage": "https://adminlte.io",
"license": "MIT",
"authors": [
{
"name": "Colorlib",
"homepage": "https://colorlib.com"
}
],
"support": {
"issues": "https://github.com/ColorlibHQ/adminlte-laravel/issues",
"source": "https://github.com/ColorlibHQ/adminlte-laravel"
},
"require": {
"php": "^8.3",
"illuminate/support": "^13.0",
"illuminate/view": "^13.0"
},
"require-dev": {
"orchestra/testbench": "^11.2",
"phpunit/phpunit": "^12.4 || ^13.0",
"laravel/pint": "^1.30",
"larastan/larastan": "^3.10"
},
"autoload": {
"psr-4": {
"ColorlibHQ\\AdminLte\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ColorlibHQ\\AdminLte\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"lint": "pint --test",
"fix": "pint",
"analyse": "phpstan --memory-limit=1G",
"check": [
"@lint",
"@analyse",
"@test"
]
},
"scripts-descriptions": {
"test": "Run the PHPUnit test suite",
"lint": "Check code style with Pint (no changes)",
"fix": "Fix code style with Pint",
"analyse": "Run PHPStan static analysis",
"check": "Run lint, analyse and test (what CI runs)"
},
"extra": {
"laravel": {
"providers": [
"ColorlibHQ\\AdminLte\\AdminLteServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}