Skip to content

Commit 6dd6dd1

Browse files
committed
update
1 parent 4dbdd65 commit 6dd6dd1

File tree

11 files changed

+721
-631
lines changed

11 files changed

+721
-631
lines changed

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@
1414
"format": "prettier --write resources/js"
1515
},
1616
"devDependencies": {
17-
"@tailwindcss/typography": "^0.5.13",
18-
"@types/node": "^20.14.12",
19-
"postcss": "^8.4.39",
20-
"prettier": "^3.3.3",
21-
"prettier-plugin-tailwindcss": "^0.6.5",
17+
"@tailwindcss/typography": "^0.5.16",
18+
"@types/node": "^22.10.10",
19+
"postcss": "^8.5.1",
20+
"prettier": "^3.4.2",
21+
"prettier-plugin-tailwindcss": "^0.6.11",
2222
"rollup-plugin-minify-html-literals": "^1.2.6",
23-
"tailwindcss": "^3.4.6",
24-
"typescript": "^5.5.4",
25-
"vite": "^5.3.4",
26-
"vite-plugin-dts": "^3.9.1"
23+
"tailwindcss": "^3.4.17",
24+
"typescript": "^5.7.3",
25+
"vite": "^6.0.11",
26+
"vite-plugin-dts": "^4.5.0"
2727
},
2828
"dependencies": {
2929
"clsx": "^2.1.1",
30-
"lit": "^3.1.4"
30+
"lit": "^3.2.1"
3131
},
3232
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
3333
}

phpstan.neon.dist

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ includes:
44
parameters:
55
tmpDir: build/phpstan
66
checkOctaneCompatibility: true
7-
checkModelProperties: true
8-
checkMissingIterableValueType: false
9-
checkGenericClassInNonGenericObjectType: false
107

118
level: 6
129

@@ -15,5 +12,6 @@ parameters:
1512
- config
1613

1714
ignoreErrors:
15+
- identifier: missingType.generics
16+
- identifier: missingType.iterableValue
1817
- '#Unsafe usage of new static#'
19-

pnpm-lock.yaml

Lines changed: 688 additions & 591 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/dist/laravel-cookie-solution.js

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/dist/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"laravel-cookie-solution.js": "laravel-cookie-solution.js?id=fba2323b"
2+
"laravel-cookie-solution.js": "laravel-cookie-solution.js?id=9e048efb"
33
}

src/Cookie.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ public function __construct(
1515
*/
1616
public readonly int $duration,
1717
public readonly string $description,
18-
) {
19-
}
18+
) {}
2019

2120
public function toArray(): array
2221
{

src/CookieSolution.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ class CookieSolution
2626

2727
public function __construct(
2828
protected CookieSolutionAssets $assets,
29-
) {
30-
}
29+
) {}
3130

3231
public function enabled(): bool
3332
{

src/CookieSolutionStatus.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ public function __construct(
1212
* @var array<string, bool>
1313
*/
1414
protected readonly array $purposes = [],
15-
) {
16-
}
15+
) {}
1716

1817
public static function default(): CookieSolutionStatus
1918
{

src/Service.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ public function __construct(
1616
* @var Cookie[]
1717
*/
1818
public readonly array $cookies = []
19-
) {
20-
}
19+
) {}
2120

2221
public function toArray(): array
2322
{

src/ServiceFactories/ServiceFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ abstract class ServiceFactory
88
{
99
public static function new(): static
1010
{
11-
return new static();
11+
return new static;
1212
}
1313

1414
abstract public function build(): Service;

0 commit comments

Comments
 (0)