forked from tallstackui/tallstackui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "tallstackui/tallstackui",
"description": "A curated list of TallStack UI Components",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "AJ Meireles",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TallStackUi\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\": "vendor/orchestra/testbench-core/laravel/app",
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.1|^8.2|^8.3",
"livewire/livewire": "^3.0",
"laravel/framework": "^10.0"
},
"require-dev": {
"pestphp/pest": "^2.17",
"laravel/pint": "^1.13",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^8.12",
"orchestra/testbench-dusk": "^8.12",
"pestphp/pest-plugin-type-coverage": "^2.2"
},
"scripts": {
"test": "./vendor/bin/pest",
"test:ci": "CI=true ./vendor/bin/pest",
"test:feature": "./vendor/bin/pest --filter=Feature --parallel",
"test:browser": "./vendor/bin/pest --filter=Browser",
"test:browser:ci": "CI=true ./vendor/bin/pest --filter=Browser",
"type": "./vendor/bin/pest --type-coverage",
"format": "./vendor/bin/pint",
"analyse": "./vendor/bin/phpstan analyse --memory-limit=2G",
"ci": [
"./vendor/bin/pest --filter=Feature --parallel",
"CI=true ./vendor/bin/pest --filter=Browser",
"./vendor/bin/pint --test",
"./vendor/bin/phpstan analyse --memory-limit=2G"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"TallStackUi\\TallStackUiServiceProvider"
],
"aliases": []
}
},
"minimum-stability": "dev",
"prefer-stable": true
}