-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 1.98 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 1.98 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
79
80
{
"name": "datalogix/tall-kit",
"description": "A set of components to utilise in your Laravel Blade views using TALL stack.",
"keywords": [
"TALL",
"laravel",
"blade",
"tailwind",
"alphine",
"livewire",
"kit",
"components"
],
"homepage": "https://github.com/datalogix/tall-kit",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Ricardo Gobbo de Souza",
"email": "ricardogobbosouza@yahoo.com.br"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/view": "^10.0|^11.0"
},
"require-dev": {
"league/commonmark": "^2.0",
"livewire/livewire": "^3.0",
"lorisleiva/cron-translator": "^0.4",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.0",
"spatie/laravel-translatable": "^6.0"
},
"autoload": {
"psr-4": {
"TALLKit\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"TALLKit\\Tests\\": "tests/"
}
},
"scripts": {
"dev": [
"@composer update",
"@composer test",
"pnpm install",
"pnpm dev"
],
"lint": [
"@php pint",
"pnpm lint"
],
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"TALLKit\\TALLKitServiceProvider"
]
}
},
"suggest": {
"league/commonmark": "Required to use the markdown component (^2.0).",
"lorisleiva/cron-translator": "Required to use the cron component (^0.2)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}