-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
81 lines (81 loc) · 2.6 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "spiral-packages/livewire",
"description": "Livewire integration bridge for Spiral Framework",
"keywords": [
"livewire",
"spiral"
],
"homepage": "https://github.com/spiral-packages/livewire",
"license": "MIT",
"require": {
"php": "^8.1",
"adbario/php-dot-notation": "^3.3",
"spiral-packages/league-event": "^1.0.1",
"spiral/attributes": "^3.0",
"spiral/encrypter": "^3.7",
"spiral/scaffolder": "^3.7",
"symfony/property-access": "^5.4.22 || ^6.0",
"spiral/marshaller-bridge": "^1.0"
},
"require-dev": {
"spiral/twig-bridge": "^2.0.1",
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^10.2",
"friendsofphp/php-cs-fixer": "^3.19",
"spiral/testing": "^2.3",
"vimeo/psalm": "^5.13",
"spiral/validator": "^1.3",
"spiral/translator": "^3.7",
"spiral/nyholm-bridge": "^1.3",
"spiral/cycle-bridge": "^2.5",
"spiral-packages/symfony-validator": "^1.3",
"spiral-packages/laravel-validator": "^1.1"
},
"autoload": {
"psr-4": {
"Spiral\\Livewire\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Livewire\\Tests\\App\\": "tests/app",
"Spiral\\Livewire\\Tests\\": "tests/src"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm --config=psalm.xml ./src",
"cs": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -vvv --dry-run --using-cache=no"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": true
}
},
"suggest": {
"spiral/translator": "To support components localization",
"spiral/validator": "One of available validators to validate data in a Livewire component",
"spiral-packages/symfony-validator": "One of available validators to validate data in a Livewire component",
"spiral-packages/laravel-validator": "One of available validators to validate data in a Livewire component"
},
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\Livewire\\Bootloader\\LivewireBootloader"
]
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/spiral/marshaller-bridge"
},
{
"type": "vcs",
"url": "https://github.com/spiral/marshaller"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}