-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.13 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
{
"name": "sensasi-delight/material-blade",
"description": "Material Blade is a simple package that provides the beautifulness of Google Material Design components as Laravel Blade components. Material Blade aims to make UI/UX development of your Laravel app faster, inspired by Material UI.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"blade",
"components",
"package",
"google",
"material design"
],
"autoload": {
"psr-4": {
"MaterialBlade\\": "src/"
}
},
"authors": [
{
"name": "Zain Adam",
"email": "zainadam.id@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"illuminate/support": "^9|^10|^11",
"illuminate/view": "^9|^10|^11",
"php": "^8.1"
},
"scripts": {
"lint": "pint --test",
"lint:fix": "pint"
},
"extra": {
"laravel": {
"providers": [
"MaterialBlade\\ServiceProvider"
]
}
},
"require-dev": {
"laravel/pint": "^1.16"
}
}