Skip to content

Commit

Permalink
Fix broken links and update package name
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-chetan committed Jan 10, 2024
1 parent aaf703b commit 735cab4
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![Project Banner](https://raw.githubusercontent.com/devanoxLtd/revive/main/banner.png)
![Project Banner](https://raw.githubusercontent.com/devanoxltd/revive/main/banner.png)

# Laravel Revive

Expand All @@ -22,7 +22,7 @@ You can view a list of the compiled rules and examples of what they do in the [s
You can install the package via composer:

```bash
composer require devanox/laravel-revive --dev
composer require devanoxltd/laravel-revive --dev
```

Optionally you can publish a GitHub Actions config:
Expand Down Expand Up @@ -157,7 +157,7 @@ Create a `pint.json` file in your project root, you can use [Revive's `pint.json

## GitHub Action

There's a [GitHub Action](https://github.com/devanoxLtd/revive-action) you use to clean-up your workflows.
There's a [GitHub Action](https://github.com/devanoxltd/revive-action) you use to clean-up your workflows.

>**Warning** Heads Up! Workflows that commit to your repo will stop any currently running workflows and not trigger another workflow run.
Expand Down
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Instructions

1. Visit the [Laravel Revive Releases page](https://github.com/devanoxLtd/laravel-revive/releases); figure out what your next tag will be (increase the third number if it's a patch or fix; increase the second number if it's adding features)
1. Visit the [Laravel Revive Releases page](https://github.com/devanoxltd/laravel-revive/releases); figure out what your next tag will be (increase the third number if it's a patch or fix; increase the second number if it's adding features)
2. On your local machine, pull down the latest changes on the `main` branch (`git checkout main && git pull`)
3. Update the version in [`config/app.php`](./config/app.php)
4. Update dependencies and remove dev dependencies by running `composer update`
Expand All @@ -13,5 +13,5 @@
6. Run the build once to make sure it works (`./builds/revive`)
7. Commit all changes
8. Push all commits to GitHub
9. [Draft a new release](https://github.com/devanoxLtd/laravel-revive/releases/new) with both the tag version and title of your tag (e.g. `v2.5.1`)
9. [Draft a new release](https://github.com/devanoxltd/laravel-revive/releases/new) with both the tag version and title of your tag (e.g. `v2.5.1`)
10. Use the "Generate release notes" button to generate release notes from the merged PRs.
4 changes: 2 additions & 2 deletions app/Support/ReviveConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public static function loadLocal(): array
});
}

if (file_exists(Project::path() . '/vendor/devanox/laravel-revive/revive.json')) {
if (file_exists(Project::path() . '/vendor/devanoxltd/laravel-revive/revive.json')) {
return tap(json_decode(
file_get_contents(Project::path() . '/vendor/devanox/laravel-revive/revive.json'),
file_get_contents(Project::path() . '/vendor/devanoxltd/laravel-revive/revive.json'),
true,
512,
JSON_THROW_ON_ERROR
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "devanox/laravel-revive",
"name": "devanoxltd/laravel-revive",
"description": "Automatic configuration for Laravel apps to apply Devanox's standard linting & code standards.",
"keywords": [
"devanox",
Expand All @@ -8,12 +8,12 @@
"code style",
"laravel"
],
"homepage": "https://github.com/devanoxLtd/laravel-revive",
"homepage": "https://github.com/devanoxltd/laravel-revive",
"type": "package",
"license": "MIT",
"support": {
"issues": "https://github.com/devanoxLtd/laravel-revive/issues",
"source": "https://github.com/devanoxLtd/laravel-revive"
"issues": "https://github.com/devanoxltd/laravel-revive/issues",
"source": "https://github.com/devanoxltd/laravel-revive"
},
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion stubs/github-actions/revive-fix-blame.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
ref: ${{ github.head_ref }}

- name: "Revive Fix"
uses: devanoxLtd/revive-action@v2
uses: devanoxltd/revive-action@v2
with:
args: fix

Expand Down
2 changes: 1 addition & 1 deletion stubs/github-actions/revive-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
ref: ${{ github.head_ref }}

- name: "Revive Fix"
uses: devanoxLtd/revive-action@v2
uses: devanoxltd/revive-action@v2
with:
args: fix

Expand Down
2 changes: 1 addition & 1 deletion stubs/github-actions/revive-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: "Revive Lint"
uses: devanoxLtd/revive-action@v2
uses: devanoxltd/revive-action@v2
with:
args: lint

0 comments on commit 735cab4

Please sign in to comment.