Skip to content

Commit c82d3b8

Browse files
committed
chore: rename plugin
1 parent 2c4ea17 commit c82d3b8

5 files changed

Lines changed: 40 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
22

3-
# PHP Opcodes Changelog
3+
# PHP Dump Changelog
44

55
## [Unreleased]
66
### Added

README.md

Lines changed: 36 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,54 @@
1-
# PHP Opcodes
1+
# PHP Dump
22

3-
![Build](https://github.com/xepozz/php-opcodes-plugin/workflows/Build/badge.svg)
3+
![Build](https://github.com/xepozz/php-dump-plugin/workflows/Build/badge.svg)
44
[![Version](https://img.shields.io/jetbrains/plugin/v/MARKETPLACE_ID.svg)](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID)
55
[![Downloads](https://img.shields.io/jetbrains/plugin/d/MARKETPLACE_ID.svg)](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID)
66

77
## Template ToDo list
88
- [x] Create a new [IntelliJ Platform Plugin Template][template] project.
9-
- [ ] Get familiar with the [template documentation][template].
10-
- [ ] Adjust the [pluginGroup](./gradle.properties) and [pluginName](./gradle.properties), as well as the [id](./src/main/resources/META-INF/plugin.xml) and [sources package](./src/main/kotlin).
11-
- [ ] Adjust the plugin description in `README` (see [Tips][docs:plugin-description])
12-
- [ ] Review the [Legal Agreements](https://plugins.jetbrains.com/docs/marketplace/legal-agreements.html?from=IJPluginTemplate).
13-
- [ ] [Publish a plugin manually](https://plugins.jetbrains.com/docs/intellij/publishing-plugin.html?from=IJPluginTemplate) for the first time.
149
- [ ] Set the `MARKETPLACE_ID` in the above README badges. You can obtain it once the plugin is published to JetBrains Marketplace.
15-
- [ ] Set the [Plugin Signing](https://plugins.jetbrains.com/docs/intellij/plugin-signing.html?from=IJPluginTemplate) related [secrets](https://github.com/JetBrains/intellij-platform-plugin-template#environment-variables).
16-
- [ ] Set the [Deployment Token](https://plugins.jetbrains.com/docs/marketplace/plugin-upload.html?from=IJPluginTemplate).
17-
- [ ] Click the <kbd>Watch</kbd> button on the top of the [IntelliJ Platform Plugin Template][template] to be notified about releases containing new features and fixes.
1810

1911
<!-- Plugin description -->
20-
Plugin exposes PHP Opcodes for the selected PHP code snippet or file.
2112

22-
It is possible to navigate through the codebase and watch related opcodes.
13+
[Github](https://github.com/xepozz/php-dump-plugin) | [Telegram](https://t.me/jb_plugins/50) | [Donation](https://github.com/xepozz/xepozz?tab=readme-ov-file#become-a-sponsor)
14+
15+
## PHP Dump
16+
17+
Plugin analyzes edited PHP files and provides several useful tools.
18+
19+
Opcache Dumper:
20+
- Dump opcodes for the current file
21+
- Provide "preload.php" to enhance opcache effectiveness
22+
23+
PHP tokens/nodes Dumper (future scope):
24+
- Dump tokens for the current file
25+
- Use nikic/php-parser to provide a tree-like view of programming entities
26+
27+
28+
## Donation
29+
30+
Open-source tools can greatly improve workflows, helping developers and businesses save time and increase revenue.
31+
Many successful projects have been built on these tools, benefiting a wide community.
32+
However, maintaining and enhancing these resources requires continuous effort and investment.
33+
34+
Support from the community helps keep these projects alive and ensures they remain useful for everyone.
35+
Donations play a key role in sustaining and improving these open-source initiatives.
36+
37+
Chose the best option for you to say thank you:
38+
39+
[<img height="28" src="https://github.githubassets.com/assets/patreon-96b15b9db4b9.svg"> Patreon](https://patreon.com/xepozz)
40+
|
41+
[<img height="28" src="https://github.githubassets.com/assets/buy_me_a_coffee-63ed78263f6e.svg"> Buy me a coffee](https://buymeacoffee.com/xepozz)
42+
|
43+
[<img height="28" src="https://boosty.to/favicon.ico"> Boosty](https://boosty.to/xepozz)
44+
2345
<!-- Plugin description end -->
2446

2547
## Installation
2648

2749
- Using the IDE built-in plugin system:
2850

29-
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>Marketplace</kbd> > <kbd>Search for "php-opcodes-plugin"</kbd> >
51+
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>Marketplace</kbd> > <kbd>Search for "php-dump-plugin"</kbd> >
3052
<kbd>Install</kbd>
3153

3254
- Using JetBrains Marketplace:
@@ -38,7 +60,7 @@ It is possible to navigate through the codebase and watch related opcodes.
3860

3961
- Manually:
4062

41-
Download the [latest release](https://github.com/xepozz/php-opcodes-plugin/releases/latest) and install it manually using
63+
Download the [latest release](https://github.com/xepozz/php-dump-plugin/releases/latest) and install it manually using
4264
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>⚙️</kbd> > <kbd>Install plugin from disk...</kbd>
4365

4466

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
22

33
pluginGroup = com.github.xepozz.php_opcodes
4-
pluginName = PHP Opcodes
4+
pluginName = PHP Dump
55
pluginRepositoryUrl = https://github.com/xepozz/php-opcodes-plugin
66
# SemVer format -> https://semver.org
77
pluginVersion = 2025.0.1

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ plugins {
22
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
33
}
44

5-
rootProject.name = "PHP Opcodes"
5+
rootProject.name = "PHP Dump"

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
22
<idea-plugin>
33
<id>com.github.xepozz.php_opcodes</id>
4-
<name>PHP Opcodes</name>
4+
<name>PHP Dump</name>
55
<vendor email="xepozz@list.ru" url="https://github.com/xepozz">Dmitrii Derepko (@xepozz)</vendor>
66

77
<depends>com.intellij.modules.platform</depends>

0 commit comments

Comments
 (0)