Skip to content

Commit 737efe5

Browse files
committed
stable
1 parent 79d19eb commit 737efe5

File tree

3 files changed

+58
-56
lines changed

3 files changed

+58
-56
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ All notable changes to the Laravel extension will be documented in this file.
66

77
- Nothing yet
88

9+
## [v1.0.0]
10+
11+
- Stable release!
12+
913
## [0.1.21]
1014

1115
- Additional Livewire, Volt, and Blade support ([#261](https://github.com/laravel/vs-code-extension/pull/261))

README.md

Lines changed: 54 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# Official Laravel VS Code Extension
22

3-
> **Note:** This extension is currently in Open Beta Testing. Please refer to the [support instructions](./SUPPORT.md) on how to file a bug report or feature request.
4-
53
Below you'll find a list of features as well as a roadmap with features we will be integrating soon.
64

75
**Please Note:**
86

9-
- This extension will occasionally boot your app in the background to collect information about your app for use in autocompletion, linking, hovering, and diagnostics
10-
- When you first install the extension it will download a small binary to your machine, we use this binary for PHP parsing
11-
- This extension is intended to provide Laravel-specific intelligence, not general PHP intelligence. If you are currently using an extension for general PHP intelligence, it is recommended to continue using that in conjunction with this extension.
7+
- This extension will occasionally boot your app in the background to collect information about your app for use in autocompletion, linking, hovering, and diagnostics
8+
- When you first install the extension it will download a small binary to your machine, we use this binary for PHP parsing
9+
- This extension is intended to provide Laravel-specific intelligence, not general PHP intelligence. If you are currently using an extension for general PHP intelligence, it is recommended to continue using that in conjunction with this extension.
1210

1311
## Supported Versions
1412

@@ -29,20 +27,20 @@ App::isShared('auth.driver')
2927
// etc
3028
```
3129

32-
- Auto-completion
33-
- Links directly to binding
34-
- Warns when binding not found
35-
- Hoverable
30+
- Auto-completion
31+
- Links directly to binding
32+
- Warns when binding not found
33+
- Hoverable
3634

3735
### Assets
3836

3937
```php
4038
asset('my-amazing-jpeg.png')
4139
```
4240

43-
- Auto-completion
44-
- Links directly to asset
45-
- Warns when asset not found
41+
- Auto-completion
42+
- Links directly to asset
43+
- Warns when asset not found
4644

4745
<!--
4846
### Auth
@@ -60,7 +58,7 @@ Gate::allows('viewNova');
6058

6159
### Blade
6260

63-
- Syntax highlighting
61+
- Syntax highlighting
6462

6563
### Config
6664

@@ -75,17 +73,17 @@ config()->string('broadcasting.connections.reverb.app_id');
7573
// etc
7674
```
7775

78-
- Auto-completion
79-
- Links directly to config value
80-
- Warns when config not found
81-
- Hoverable
76+
- Auto-completion
77+
- Links directly to config value
78+
- Warns when config not found
79+
- Hoverable
8280

8381
### Eloquent
8482

85-
- Method auto-completion
86-
- Field auto-completion (e.g. `where` methods, `create`/`make`/object creation)
87-
- Relationship auto-completion (e.g. `with` method + `with` with array keys)
88-
- Sub-query auto-completion ( `with` with array keys + value as closure)
83+
- Method auto-completion
84+
- Field auto-completion (e.g. `where` methods, `create`/`make`/object creation)
85+
- Relationship auto-completion (e.g. `with` method + `with` with array keys)
86+
- Sub-query auto-completion ( `with` with array keys + value as closure)
8987

9088
### Env
9189

@@ -94,12 +92,12 @@ env('REVERB_APP_ID');
9492
Env::get('REVERB_APP_ID');
9593
```
9694

97-
- Auto-completion
98-
- Links directly to env value
99-
- Warns when env not found, offers quick fixes:
100-
- Add to `.env`
101-
- Copy value from `.env.example`
102-
- Hoverable
95+
- Auto-completion
96+
- Links directly to env value
97+
- Warns when env not found, offers quick fixes:
98+
- Add to `.env`
99+
- Copy value from `.env.example`
100+
- Hoverable
103101

104102
### Inertia
105103

@@ -109,11 +107,11 @@ Inertia::render('Pages/Dashboard');
109107
Route::inertia('/dashboard', 'Pages/Dashboard');
110108
```
111109

112-
- Auto-completion
113-
- Links directly to JS view
114-
- Warns when view not found, offers quick fixes:
115-
- Create view
116-
- Hoverable
110+
- Auto-completion
111+
- Links directly to JS view
112+
- Warns when view not found, offers quick fixes:
113+
- Create view
114+
- Hoverable
117115

118116
**Note:** If the extension is unable to find your Inertia views, you may need to update your `inertia.testing.page_paths` and/or `inertia.testing.page_extensions` config values.
119117

@@ -131,10 +129,10 @@ redirect()->route('dashboard');
131129
// etc
132130
```
133131

134-
- Auto-completion
135-
- Links directly to route definition
136-
- Warns when route not found
137-
- Hoverable
132+
- Auto-completion
133+
- Links directly to route definition
134+
- Warns when route not found
135+
- Hoverable
138136

139137
### Middleware
140138

@@ -145,10 +143,10 @@ Route::withoutMiddleware('auth');
145143
// etc
146144
```
147145

148-
- Auto-completion
149-
- Links directly to middleware handling
150-
- Warns when middleware not found
151-
- Hoverable
146+
- Auto-completion
147+
- Links directly to middleware handling
148+
- Warns when middleware not found
149+
- Hoverable
152150

153151
### Translation
154152

@@ -160,11 +158,11 @@ Lang::get('auth.failed');
160158
// etc
161159
```
162160

163-
- Auto-completion
164-
- Links directly to translation
165-
- Warns when translation not found
166-
- Hoverable
167-
- Parameter auto-completion
161+
- Auto-completion
162+
- Links directly to translation
163+
- Warns when translation not found
164+
- Hoverable
165+
- Parameter auto-completion
168166

169167
### Validation
170168

@@ -175,7 +173,7 @@ request()->sometimes(['name' => 'required']);
175173
// etc
176174
```
177175

178-
- Auto-completion for strings/arrays (not "|" just yet)
176+
- Auto-completion for strings/arrays (not "|" just yet)
179177

180178
### View
181179

@@ -184,19 +182,19 @@ view('dashboard');
184182
Route::view('/', 'home');
185183
```
186184

187-
- Auto-completion
188-
- Links directly to Blade view
189-
- Warns when view not found, offers quick fixes:
190-
- Create view
191-
- Hoverable
185+
- Auto-completion
186+
- Links directly to Blade view
187+
- Warns when view not found, offers quick fixes:
188+
- Create view
189+
- Hoverable
192190

193191
## On the Roadmap
194192

195-
- Integration with VS Code test runner
196-
- Livewire support
197-
- Volt support
198-
- Pint support
199-
- Better autocompletion, linking, hovering, and diagnostics in Blade files
193+
- Integration with VS Code test runner
194+
- Livewire support
195+
- Volt support
196+
- Pint support
197+
- Better autocompletion, linking, hovering, and diagnostics in Blade files
200198

201199
### LSP Availability
202200

icon.png

-49.7 KB
Loading

0 commit comments

Comments
 (0)