-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
52 lines (52 loc) · 1.31 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
{
"name": "proxeuse/fortify-tabler",
"description": "A preset for FortifyUI based on the Tabler Bootstrap framework.",
"keywords": [
"fortify-ui",
"laravel",
"tabler.io"
],
"homepage": "https://github.com/Proxeuse/fortify-tabler/",
"license": "MIT",
"authors": [
{
"name": "Roel Reijneveld",
"email": "[email protected]",
"homepage": "https://roelreijneveld.nl",
"role": "Developer"
},
{
"name": "Proxeuse",
"email": "[email protected]",
"homepage": "https://www.proxeuse.com/"
}
],
"require": {
"php": "^7.4 || ^8.0",
"illuminate/contracts": "^8.0",
"zacksmash/fortify-ui": "^1.0",
"intervention/image": "^2.5.1"
},
"autoload": {
"psr-4": {
"Proxeuse\\FortifyUITabler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Proxeuse\\FortifyUITabler\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Proxeuse\\FortifyUITabler\\FortifyUITablerServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}