-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathide.blade.php
More file actions
79 lines (67 loc) · 4.33 KB
/
ide.blade.php
File metadata and controls
79 lines (67 loc) · 4.33 KB
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
<x-app-layout layout="app" title='IDE plugins' description="Pest has IDE plugins for PhpStorm and VSCode.">
<main role="main" class="w-full flex-auto">
<section class="documentation">
<div class="max-w-5xl mx-auto px-4 lg:px-4 xl:px-6 lg:flex lg:flex-row">
<x-docs.sidebar>
{!! $index !!}
</x-docs.sidebar>
<div class="docs-main max-w-prose DocSearch-content mx-auto lg:mr-0 relative w-full px-3 lg:px-0 mt-6 mb-20">
<div class="w-100 lg:block absolute top-0 right-0 hidden h-8 mt-2 text-sm">
<a href="https://github.com/pestphp/pestphp.com/edit/3.x/resources/views/ide.blade.php">
Edit this page →
</a>
</div>
<h1>Editor Setup</h1>
<p>
An editor plugin can significantly enhance the developer experience when working with Pest PHP. Although most editors have built-in support for Pest PHP, plugins can offer additional functionalities that can streamline and simplify the development process.
</p>
<p>
Currently, the PhpStorm team at JetBrains is maintaining the Pest Plugin for PhpStorm. It is installed by default since PhpStorm 2023.3.
</p>
<div class="mt-6 mb-12">
<x-jetbrains-ide-plugin
title="PhpStorm"
plugin-id="14636"
logo="https://upload.wikimedia.org/wikipedia/commons/c/c9/PhpStorm_Icon.svg"
url="https://plugins.jetbrains.com/plugin/14636-pest"
github="https://github.com/pestphp/pest-intellij">
</x-jetbrains-ide-plugin>
</div>
<p>
In case you do not utilize PHPStorm, you may consider experimenting with the community-maintained plugin. Nevertheless, it's worth noting that this alternative may not offer the same level of user experience as the official PHPStorm plugin.
</p>
<div class="space-y-6 mt-6">
<x-vs-code-ide-plugin
title="VSCode PHPUnit TestExplorer"
extension="recca0120.vscode-phpunit"
logo="https://raw.githubusercontent.com/recca0120/vscode-phpunit/main/img/icon.png"
url="https://marketplace.visualstudio.com/items?itemName=recca0120.vscode-phpunit"
github="https://github.com/recca0120/vscode-phpunit">
</x-vs-code-ide-plugin>
<x-vs-code-ide-plugin
title="VSCode"
extension="m1guelpf.better-pest"
logo="https://upload.wikimedia.org/wikipedia/commons/9/9a/Visual_Studio_Code_1.35_icon.svg"
url="https://marketplace.visualstudio.com/items?itemName=m1guelpf.better-pest"
github="https://github.com/m1guelpf/better-pest">
</x-vs-code-ide-plugin>
<x-vs-code-ide-plugin
title="VSCode Snippets"
extension="dansysanalyst.pest-snippets"
logo="https://raw.githubusercontent.com/dansysanalyst/pest-snippets/main/images/icon.png"
url="https://marketplace.visualstudio.com/items?itemName=dansysanalyst.pest-snippets"
github="https://github.com/dansysanalyst/pest-snippets">
</x-vs-code-ide-plugin>
<x-neovim-ide-plugin
title="Neovim (via Neotest)"
logo="https://upload.wikimedia.org/wikipedia/commons/3/3a/Neovim-mark.svg"
url="https://github.com/V13Axel/neotest-pest"
github="https://github.com/V13Axel/neotest-pest">
</x-ide-plugin>
</div>
{!! $body !!}
</div>
</div>
</section>
</main>
</x-app-layout>