Skip to content

Commit 29b392f

Browse files
Merge remote-tracking branch 'origin/main' into 1.x
# Conflicts: # tests/Pest.php
2 parents 27c32ac + 42f46be commit 29b392f

File tree

3 files changed

+57
-1
lines changed

3 files changed

+57
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class UserFeed extends Feed
8484

8585
By default, `public`.
8686

87-
The path to the file inside the storage is indicated in the `filiname` method:
87+
The path to the file inside the storage is indicated in the `filename` method:
8888

8989
```php
9090
use DragonCode\LaravelFeed\Feeds\Feed;
@@ -259,6 +259,7 @@ class UserFeedItem extends FeedItem
259259
> - `@attributes`
260260
> - `@cdata`
261261
> - `@mixed`
262+
> - `@value`
262263
263264
```php
264265
use DragonCode\LaravelFeed\Feeds\Items\FeedItem;

biome.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3+
"vcs": {
4+
"enabled": false,
5+
"clientKind": "git",
6+
"useIgnoreFile": false
7+
},
8+
"files": {
9+
"ignoreUnknown": false,
10+
"includes": [
11+
"**",
12+
"!node_modules",
13+
"!vendor",
14+
"!composer.json",
15+
"!composer.lock",
16+
"!package.json",
17+
"!package-lock.json"
18+
]
19+
},
20+
"formatter": {
21+
"enabled": true,
22+
"indentStyle": "space",
23+
"indentWidth": 4
24+
},
25+
"linter": {
26+
"enabled": true,
27+
"rules": {
28+
"recommended": true
29+
}
30+
},
31+
"javascript": {
32+
"formatter": {
33+
"quoteStyle": "double"
34+
}
35+
},
36+
"json": {
37+
"formatter": {
38+
"enabled": true,
39+
"bracketSpacing": true,
40+
"expand": "always"
41+
},
42+
"parser": {
43+
"allowComments": true
44+
}
45+
},
46+
"assist": {
47+
"enabled": true,
48+
"actions": {
49+
"source": {
50+
"organizeImports": "on"
51+
}
52+
}
53+
}
54+
}

tests/Pest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717

1818

19+
1920
pest()
2021
->printer()
2122
->compact();

0 commit comments

Comments
 (0)