-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
57 lines (57 loc) · 1.27 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "area17/blast",
"type": "library",
"license": "Apache-2.0",
"description": "Storybook for Laravel Blade",
"authors": [
{
"name": "Tim Brook",
"email": "[email protected]"
}
],
"keywords": [
"A17",
"storybook",
"components",
"laravel",
"blade",
"design-systems",
"ui"
],
"homepage": "https://area17.com",
"support": {
"issues": "https://github.com/area17/blast/issues/"
},
"require": {
"php": "^7.3|^8.0|^8.1",
"ext-json": "*",
"illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/view": "^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^6.21|^7.0|^9.0"
},
"autoload": {
"psr-4": {
"A17\\Blast\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"A17\\Blast\\BlastServiceProvider"
]
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}