-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (33 loc) · 766 Bytes
/
composer.json
File metadata and controls
36 lines (33 loc) · 766 Bytes
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
{
"name": "noistudio/admin-blocks",
"description": "Laravel Blocks system for integrate in admin panel",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Artem Tatarinov",
"email": "artem@noibiz.com"
}
],
"require": {
"laravel/framework": "^8.12|^9.0|^10.0"
},
"require-dev": {
"jetbrains/phpstorm-attributes": "^1.0"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"AdminBlocks\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"AdminBlocks\\Frameworks\\Illuminate\\ServiceProvider"
]
}
},
"minimum-stability": "dev"
}