forked from wireui/wireui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.75 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
{
"name": "wireui/wireui",
"description": "TallStack components",
"type": "library",
"keywords": [
"livewire components",
"livewire-ui",
"wireui",
"laravel components",
"blade components"
],
"require": {
"php": "^8.0|^8.1",
"laravel/framework": "^8.83|^9.16|^10.0",
"livewire/livewire": "^2.10"
},
"require-dev": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^6.0|^7.6|^8.0",
"orchestra/testbench-dusk": "^6.0|^7.6|^8.0",
"psy/psysh": "@stable",
"friendsofphp/php-cs-fixer": "^3.9",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-livewire": "^1.0",
"pestphp/pest-plugin-mock": "^1.0"
},
"authors": [
{
"name": "Pedro Henrique",
"email": "[email protected]"
}
],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"WireUi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "vendor/orchestra/testbench-core/laravel/app",
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"./vendor/bin/dusk-updater detect --no-interaction"
],
"test": "./vendor/bin/pest",
"test:ci": "CI=true ./vendor/bin/pest",
"phpcs": "./vendor/bin/php-cs-fixer fix"
},
"extra": {
"laravel": {
"providers": [
"WireUi\\Providers\\WireUiServiceProvider"
],
"aliases": []
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}