Skip to content

Commit 2a7bff7

Browse files
committed
refactor: set plugin name
1 parent 33dec76 commit 2a7bff7

13 files changed

Lines changed: 30 additions & 42 deletions

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
- uses: google-github-actions/release-please-action@v3
1717
with:
1818
release-type: php
19-
package-name: eclipsephp-plugin-template
19+
package-name: eclipsephp-world-plugin

.lando.dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: eclipsephp-plugin-template
1+
name: eclipse-world
22
services:
33
appserver:
44
type: php:custom

CHANGELOG.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1 @@
11
# Changelog
2-
3-
## 1.0.0 (2025-03-21)
4-
5-
6-
### Features
7-
8-
* add division method with test ([6acebfb](https://github.com/DataLinx/eclipsephp-plugin-template/commit/6acebfb8e784e2a6a2f43bf0d318ee3555455ff6))
9-
* add Math source file with tests ([bdca326](https://github.com/DataLinx/eclipsephp-plugin-template/commit/bdca3261e55aa6893684eba4517c138a795e8ecb))
10-
* add placeholder files ([2dda560](https://github.com/DataLinx/eclipsephp-plugin-template/commit/2dda5603cb60df1973f1d91130814965b76801b1))
11-
* add service provider and plugin class ([b3343ee](https://github.com/DataLinx/eclipsephp-plugin-template/commit/b3343eebb6b57d66199efa07f5085e0339a5519c))

README.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,23 @@
1-
# Eclipse Filament plugin template
1+
# Eclipse World plugin for Filament
22

3-
![Packagist PHP Version Support](https://img.shields.io/packagist/php-v/eclipsephp/plugin-template)
4-
![Packagist Version](https://img.shields.io/packagist/v/eclipsephp/plugin-template)
5-
![Packagist Downloads](https://img.shields.io/packagist/dt/eclipsephp/plugin-template)
6-
[![Tests](https://github.com/DataLinx/eclipsephp-plugin-template/actions/workflows/test-runner.yml/badge.svg)](https://github.com/DataLinx/eclipsephp-plugin-template/actions/workflows/test-runner.yml)
7-
[![codecov](https://codecov.io/gh/DataLinx/eclipsephp-plugin-template/graph/badge.svg?token=1HKSY5O6IW)](https://codecov.io/gh/DataLinx/eclipsephp-plugin-template)
3+
![Packagist PHP Version Support](https://img.shields.io/packagist/php-v/eclipsephp/world-plugin)
4+
![Packagist Version](https://img.shields.io/packagist/v/eclipsephp/world-plugin)
5+
![Packagist Downloads](https://img.shields.io/packagist/dt/eclipsephp/world-plugin)
6+
[![Tests](https://github.com/DataLinx/eclipsephp-world-plugin/actions/workflows/test-runner.yml/badge.svg)](https://github.com/DataLinx/eclipsephp-world-plugin/actions/workflows/test-runner.yml)
7+
[![codecov](https://codecov.io/gh/DataLinx/eclipsephp-world-plugin/graph/badge.svg?token=1HKSY5O6IW)](https://codecov.io/gh/DataLinx/eclipsephp-world-plugin)
88
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white)](https://conventionalcommits.org)
9-
![Packagist License](https://img.shields.io/packagist/l/eclipsephp/plugin-template)
9+
![Packagist License](https://img.shields.io/packagist/l/eclipsephp/world-plugin)
1010

1111
## About
12-
This package serves as a Filament plugin template for plugins developed by DataLinx for [Eclipse](https://github.com/DataLinx/eclipsephp-app), our web app based on Filament. It is also a reference of how such a package should be configured.
1312

14-
The template is opinionated — it's based on our tech stack, which includes JetBrains PhpStorm.
15-
16-
This template works on and expands our [PHP package template](https://github.com/DataLinx/php-package-template).
1713

1814
## Requirements
1915
- PHP >= 8.2 (due to Pest 3 requirement)
2016

2117
## Getting started
2218
* Download it with composer:
2319
```shell
24-
composer require eclipsephp/plugin-template
20+
composer require eclipsephp/world-plugin
2521
````
2622
* _Provide a simple example how to use the package._
2723

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "eclipsephp/plugin-template",
3-
"description": "Eclipse template for Filament plugins",
2+
"name": "eclipsephp/world-plugin",
3+
"description": "Filament plugin for world data",
44
"keywords": [
55
"eclipse",
66
"filament",
77
"laravel"
88
],
9-
"homepage": "https://github.com/DataLinx/eclipsephp-plugin-template",
9+
"homepage": "https://github.com/DataLinx/eclipsephp-world",
1010
"type": "library",
1111
"license": "MIT",
1212
"authors": [
@@ -26,9 +26,9 @@
2626
"prefer-stable": true,
2727
"autoload": {
2828
"psr-4": {
29-
"Eclipse\\PluginTemplate\\": "src/",
30-
"Eclipse\\PluginTemplate\\Factories\\": "database/factories/",
31-
"Eclipse\\PluginTemplate\\Seeders\\": "database/seeders/"
29+
"Eclipse\\World\\": "src/",
30+
"Eclipse\\World\\Factories\\": "database/factories/",
31+
"Eclipse\\World\\Seeders\\": "database/seeders/"
3232
}
3333
},
3434
"autoload-dev": {
@@ -56,7 +56,7 @@
5656
"extra": {
5757
"laravel": {
5858
"providers": [
59-
"Eclipse\\PluginTemplate\\PluginTemplateServiceProvider"
59+
"Eclipse\\World\\EclipseWorldServiceProvider"
6060
]
6161
}
6262
}

env/php-8.3/.lando.dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: eclipsephp-plugin-template-8.3
1+
name: eclipse-world-8.3
22
services:
33
appserver:
44
type: php:custom

env/php-8.3/composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,14 @@
1919
},
2020
"autoload": {
2121
"psr-4": {
22-
"Eclipse\\PluginTemplate\\": "src/"
22+
"Eclipse\\World\\": "src/",
23+
"Eclipse\\World\\Factories\\": "database/factories/",
24+
"Eclipse\\World\\Seeders\\": "database/seeders/"
2325
}
2426
},
2527
"autoload-dev": {
2628
"psr-4": {
27-
"Eclipse\\PluginTemplate\\Tests\\": "tests/"
29+
"Tests\\": "tests/"
2830
}
2931
}
3032
}

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)