Skip to content

Commit

Permalink
fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwang401 committed Dec 25, 2022
1 parent f3f7e3f commit 34ecd0b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

# Sortable behaviour for Eloquent models

[![Latest Version](https://img.shields.io/github/release/spatie/eloquent-sortable.svg?style=flat-square)](https://github.com/spatie/eloquent-sortable/releases)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/spatie/eloquent-sortable/run-tests?label=tests)
[![Latest Version](https://img.shields.io/github/release/performave/eloquent-sortable.svg?style=flat-square)](https://github.com/performave/eloquent-sortable/releases)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/performave/eloquent-sortable/run-tests?label=tests)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Total Downloads](https://img.shields.io/packagist/dt/spatie/eloquent-sortable.svg?style=flat-square)](https://packagist.org/packages/spatie/eloquent-sortable)
[![Total Downloads](https://img.shields.io/packagist/dt/performave/eloquent-sortable.svg?style=flat-square)](https://packagist.org/packages/performave/eloquent-sortable)

This package provides a trait that adds sortable behaviour to an Eloquent model.

Expand All @@ -33,7 +33,7 @@ We highly appreciate you sending us a postcard from your hometown, mentioning wh
This package can be installed through Composer.

```
composer require spatie/eloquent-sortable
composer require performave/eloquent-sortable
```

In Laravel 5.5 and above the service provider will automatically get registered. In older versions of the framework just add the service provider in `config/app.php` file:
Expand Down Expand Up @@ -222,7 +222,7 @@ Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed re

## Contributing

Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.
Please see [CONTRIBUTING](https://github.com/performave/.github/blob/main/CONTRIBUTING.md) for details.

## Security Vulnerabilities

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
},
"autoload": {
"psr-4": {
"Spatie\\EloquentSortable\\": "src/"
"Performave\\EloquentSortable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\EloquentSortable\\Test\\": "tests"
"Performave\\EloquentSortable\\Test\\": "tests"
}
},
"minimum-stability": "dev",
Expand All @@ -52,7 +52,7 @@
"extra": {
"laravel": {
"providers": [
"Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
"Performave\\EloquentSortable\\EloquentSortableServiceProvider"
]
}
}
Expand Down

0 comments on commit 34ecd0b

Please sign in to comment.